Update README.md
This commit is contained in:
parent
6b7bac1ffa
commit
89ca850d05
1 changed files with 13 additions and 3 deletions
16
README.md
16
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"
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in a new issue