通过终端或Applescript OSX 10.1启用Yosemite的Dark模式

时间:2015-03-06 03:06:25

标签: macos shell applescript settings osx-yosemite

有没有办法通过Shell脚本(终端)或Applescript打开Yosemite的黑暗模式?我试过了:

sudo defaults write /Library/Preferences/.GlobalPreferences AppleInterfaceTheme Dark

但它不起作用。

请帮忙!

3 个答案:

答案 0 :(得分:2)

我为此目的创建了一个命令行应用程序:dark-mode

答案 1 :(得分:1)

我明白了。

我在Applescript中这样做了:

do shell script ("sudo defaults write /Library/Preferences/.GlobalPreferences.plist _HIEnableThemeSwitchHotKey -bool true") with administrator privileges
tell application "Finder" to activate
delay 0.2
tell application "System Events"
key code "17" using {option down, control down, command down}     #Option+Control+Command+T
end tell

答案 2 :(得分:0)

我不完全确定,但您可能需要重新启动某些服务才能刷新它:

sudo killall Dock; killall SystemUIServer; killall Finder; killall cfprefsd