Title: [Bash] ponyfaggotry Author: Anonymous Pastebin link: http://pastebin.com/Kf8jYkbJ First Edit: Sunday 8th of September 2013 10:47:43 AM CDT Last Edit: Sunday 8th of September 2013 10:47:43 AM CDT #!/bin/bash imageLocation=/home/miles/Pictures/Porn/Loli/b09cca7e578d2ccc44b97260445e7e2d0d67db6e.jpg # Above is the location for the file you'd like to flash on your screen. displayTime=0.15 # The amount of time in seconds to show the image before closing it.   newNumber (){     number=$(( $RANDOM % 600 + 60 )) } # First number is the longest amount of time in seconds to wait before showing the image again while the second   # number is the shortest. The default value is 600 seconds (10 minutes) at the longest and 60 seconds at the shortest.     ## Do not touch anything below ## while true; do     newNumber     sleep $number     feh -xF $imageLocation & pid=$!     sleep $displayTime     kill $pid done