Last active
February 5, 2016 13:09
-
-
Save aerobless/9517d49e0e4be845212a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Activates the animated wallpaper temporarily | |
alias playWP='/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine -background' | |
#Activates the animated wallpaper until it's stopped. You can close the terminal window. | |
alias startWP='nohup /System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine -background > /dev/null &' | |
#Stops the animated wallpaper by killing the screensaver engine. | |
alias stopWP='killall ScreenSaverEngine' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment