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)
|
### 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"
|
||||||
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue