Skip to content

Instantly share code, notes, and snippets.

@solarshado
Created October 15, 2012 01:19
Show Gist options
  • Save solarshado/3890364 to your computer and use it in GitHub Desktop.
Save solarshado/3890364 to your computer and use it in GitHub Desktop.
Animated Matrix 'wallpaper'
#!/bin/bash
# toggle animating Matrix 'rain' desktop background
# requires xscreensaver and pidof
CMD="/usr/lib/xscreensaver/glmatrix" #adjust as needed for your install of xscreensaver
CMDOPS="-root"
RESTORE=". ~/.fehbg"
PID=$(pidof $CMD)
if [ -n "$PID" ] ; then
kill $PID
RESTORE ;
else
$CMD $CMDOPS &
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment