Adds stow script for deploying dotfiles
This commit is contained in:
parent
23b500f8af
commit
d8b4ba8025
1 changed files with 20 additions and 0 deletions
20
stow.sh
Executable file
20
stow.sh
Executable 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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue