Last active
July 11, 2017 10:16
-
-
Save angrykoala/416a3d75c3f561c70e06 to your computer and use it in GitHub Desktop.
hasselhoffinator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#hasselhoff attack taken to a new level | |
#@angrykoala | |
DIR=/home/$(whoami)/hasselhoff.jpg | |
MESSAGE="you have been hasselhoffed" | |
IMAGE_URL=http://www.ljpaez.es/imagen/hasselhoff.jpg | |
wget $IMAGE_URL -q | |
mv ./hasselhoff.jpg $DIR | |
gsettings set org.gnome.desktop.background picture-uri file://$DIR | |
xmessage -title "Hasselhoffinator" -center $MESSAGE -button "I Love Hasselhoff" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment