Enable and disable desktop icons
This commit is contained in:
parent
1b828ef2e8
commit
eaedd00a6b
13
README.md
13
README.md
@ -13,6 +13,7 @@ If you want to contribute, you are highly encouraged to do so. Please read the [
|
|||||||
- [Appearance](#appearance)
|
- [Appearance](#appearance)
|
||||||
- [Transparency](#transparency)
|
- [Transparency](#transparency)
|
||||||
- [Wallpaper](#wallpaper)
|
- [Wallpaper](#wallpaper)
|
||||||
|
- [Desktop icons](#desktopicons)
|
||||||
- [Applications](#applications)
|
- [Applications](#applications)
|
||||||
- [App Store](#app-store)
|
- [App Store](#app-store)
|
||||||
- [Apple Remote Desktop](#apple-remote-desktop)
|
- [Apple Remote Desktop](#apple-remote-desktop)
|
||||||
@ -93,6 +94,18 @@ defaults write com.apple.universalaccess reduceTransparency -bool false
|
|||||||
osascript -e 'tell application "Finder" to set desktop picture to POSIX file "/path/to/picture.jpg"'
|
osascript -e 'tell application "Finder" to set desktop picture to POSIX file "/path/to/picture.jpg"'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Desktop icons
|
||||||
|
|
||||||
|
#### Hide icons from desktop
|
||||||
|
```bash
|
||||||
|
defaults write com.apple.finder CreateDesktop -bool false && killall Finder
|
||||||
|
```
|
||||||
|
#### Show icons on desktop
|
||||||
|
|
||||||
|
```bash
|
||||||
|
defaults write com.apple.finder CreateDesktop -bool true && killall Finder
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Applications
|
## Applications
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user