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) ### User-Only Configurations (For Local Users)
- skhd - skhd (macOS Only)
- yabai - yabai (macOS Only)
- conda - conda
- dask - dask
- gh - gh
@ -95,7 +95,16 @@ for app in "${base[@]}"; do
stowit "${HOME}" "${app}" stowit "${HOME}" "${app}"
done 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 for app in "${useronly[@]}"; do
if [[ ! "$(whoami)" = "root" ]]; then if [[ ! "$(whoami)" = "root" ]]; then
stowit "${HOME}" "${app}" stowit "${HOME}" "${app}"
@ -104,3 +113,4 @@ done
echo "" echo ""
echo "##### ALL DONE" echo "##### ALL DONE"
```