added hypr and waybar dots

This commit is contained in:
Louis Hollingworth 2024-06-01 11:21:28 +01:00
parent 98eb35725e
commit a3f74e386d
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
39 changed files with 4212 additions and 26 deletions

View file

@ -2,11 +2,14 @@
# what directories should be installable by all users including the root user
base=(
sway
)
# folders that should, or only need to be installed for a local user
useronly=(
nvim
waybar
hypr
)
# run the stow command for the passed in directory ($2) in location $1
@ -29,7 +32,7 @@ done
# install only user space folders
for app in ${useronly[@]}; do
if [[! "$(whoami)" = *"root"*]]; then
if ! [[ "$(whoami)" = *"root"* ]]; then
stowit "${HOME}" $app
fi
done