Skip to content

Instantly share code, notes, and snippets.

@turbo1000
Forked from solarshado/matrix
Created October 15, 2012 01:22
Show Gist options
  • Save turbo1000/3890367 to your computer and use it in GitHub Desktop.
Save turbo1000/3890367 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