You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
415 B
37 lines
415 B
#!/usr/bin/env bash |
|
|
|
SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )" |
|
cd $SCRIPT_DIR |
|
|
|
doStow(){ |
|
local tostow=( |
|
"bin" |
|
"browserOverides" |
|
"dunst" |
|
"git" |
|
"pandoc" |
|
"qutebrowser" |
|
"ranger" |
|
"rofi" |
|
"sxiv" |
|
"templates" |
|
"vim" |
|
"x" |
|
"zathura" |
|
) |
|
|
|
for i in ${tostow[*]}; do |
|
stow $i |
|
done |
|
} |
|
|
|
pacmanInstall(){ |
|
local packages=( |
|
"gvim" |
|
"zsh" |
|
"git" |
|
) |
|
if pacman -Qs $package > /dev/null; then |
|
|
|
fi |
|
}
|
|
|