Update README.md

This commit is contained in:
jfraeys 2023-11-25 02:18:37 -05:00 committed by GitHub
parent 6b7bac1ffa
commit 89ca850d05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,8 +74,8 @@ The dotfiles are organized into categories:
### User-Only Configurations (For Local Users)
- skhd
- yabai
- skhd (macOS Only)
- yabai (macOS Only)
- conda
- dask
- gh
@ -95,7 +95,16 @@ for app in "${base[@]}"; do
stowit "${HOME}" "${app}"
done
# Install only user space folders
# Install useronly_macos folders only for macOS
if is_macos; then
for app in "${useronly_macos[@]}"; do
if [[ ! "$(whoami)" = "root" ]]; then
stowit "${HOME}" "${app}"
fi
done
fi
# Install useronly folders
for app in "${useronly[@]}"; do
if [[ ! "$(whoami)" = "root" ]]; then
stowit "${HOME}" "${app}"
@ -104,3 +113,4 @@ done
echo ""
echo "##### ALL DONE"
```