Voglio ottenere la posizione corrente del mio sfondo macOS. C'è un file o un comando che mi permetterà di trovare questi dati?
Preferirei un modo che mi permettesse di farlo dal Terminale.
macOS: Mojave Public Beta
Questo articolo di OSXDaily.com dovrebbe essere utile:
Mostra il percorso della posizione dello sfondo corrente in Mac OS X
- Type the following defaults write command:
defaults write com.apple.dock desktop-picture-show-debug-text -bool TRUE;killall Dock
- Go to the desktop to see the path printed over the wallpaper images
- After you’ve retrieved the desktop picture (use Command+Shift+G to bring up the Go To Folder window), or done what you have needed to do, you can hide the path text by using the following command:
defaults delete com.apple.dock desktop-picture-show-debug-text;killall Dock
Per determinare il percorso per lo sfondo tramite Terminale, eseguire quanto segue:
osascript -e 'tell app "finder" to get posix path of (get desktop picture as alias)'
Leggi altre domande sui tag macos mojave beta-seed-program wallpaper