Randomized Backdrops
April 29, 2004
#!/usr/bin/perl -w # This little program sets my background image # randomly in blackbox (and now openbox). # It’s called when I startx. $backdrop_directory = “/home/willyyam/crap/backdrop/”; # Set this to your backdrop files directory. opendir(BD, “$backdrop_directory”) or die; # Normally we’d report errors, but since we will be # running this via script and discarding [...]