Skip to content

Instantly share code, notes, and snippets.

@aerobless
Last active February 5, 2016 13:09
Show Gist options
  • Save aerobless/9517d49e0e4be845212a to your computer and use it in GitHub Desktop.
Save aerobless/9517d49e0e4be845212a to your computer and use it in GitHub Desktop.
#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