diff --git a/README.md b/README.md index 3ca9626..3ee7579 100755 --- a/README.md +++ b/README.md @@ -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" +```