Switch to gnu stow and add emacs pdf-tools
This commit is contained in:
20
stow.sh
Executable file
20
stow.sh
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
|
||||
FILES_DIR=$HOME/dots/files
|
||||
OPTS=$1
|
||||
|
||||
echo "You are about to stow all config files."
|
||||
echo "Do you want to proceed? [y]"
|
||||
read proceed
|
||||
|
||||
if [ "${proceed}" != "y" ]; then
|
||||
echo "Exiting!"
|
||||
exit
|
||||
fi
|
||||
|
||||
echo "Switching to ${FILES_DIR}"
|
||||
cd $FILES_DIR
|
||||
|
||||
echo "STOWING..."
|
||||
stow ${OPTS} -v --ignore="init.org" --target="$HOME" *
|
||||
echo "DONE!"
|
||||
Reference in New Issue
Block a user