Adds stow script for deploying dotfiles

This commit is contained in:
Jonathan Hodgson 2019-07-30 15:18:35 +01:00
parent da16372475
commit 335827a430

20
stow.sh Executable file
View file

@ -0,0 +1,20 @@
#!/usr/bin/env sh
tostow=(
"vim"
"bin"
"ranger"
"qutebrowser"
"zathura"
"sxiv"
"rofi"
"dunst"
)
SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
cd SCRIPT_DIR
for i in ${tostow[*]}; do
stow $i
done