Adds stow script for deploying dotfiles

master
Jonathan Hodgson 5 years ago
parent da16372475
commit 335827a430
  1. 20
      stow.sh

@ -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
Loading…
Cancel
Save