current change

This commit is contained in:
Hactarus 2022-09-01 22:46:23 +02:00
parent e93d5190ca
commit 20f5b85263
2 changed files with 358 additions and 2 deletions

View file

@ -6,7 +6,7 @@ git submodule update
# what directories should be installable by all users including the root user
base=(
bash
zsh
)
# folders that should, or only need to be installed for a local user
@ -34,7 +34,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