2019-10-11 17:33:16 +00:00
|
|
|
% osx, mac os
|
|
|
|
|
|
|
|
# Lock system
|
|
|
|
pmset displaysleepnow
|
|
|
|
|
|
|
|
# Show hidden files in Finder
|
|
|
|
defaults write com.apple.finder AppleShowAllFiles -bool true; \
|
|
|
|
killall Finder
|
|
|
|
|
|
|
|
# Hide hidden files in Finder
|
|
|
|
defaults write com.apple.finder AppleShowAllFiles -bool false; \
|
|
|
|
killall Finder
|
|
|
|
|
|
|
|
# Show items in desktop
|
|
|
|
defaults write com.apple.finder CreateDesktop -bool true; \
|
|
|
|
killall Finder
|
|
|
|
|
|
|
|
# Hide items in desktop
|
|
|
|
defaults write com.apple.finder CreateDesktop -bool false; \
|
|
|
|
killall Finder
|
2019-10-23 21:11:48 +00:00
|
|
|
|
|
|
|
# Set wallpaper
|
|
|
|
osascript -e 'tell application "Finder" to set desktop picture to POSIX file "<image_path>"'
|
|
|
|
|
|
|
|
$ image_path: find $HOME -maxdepth 3 -name "*.jpg" -o -name "*.jpeg" -o -name "*.png"
|