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 | |
| wget http://i.imgur.com/gJhmrHU.png | |
| mv gJhmrHU.png wolftrap300.png | |
| mkdir -p /home/$USER/Desktop/SCRIPTS/images | |
| mv wolftrap* /home/wapack/Desktop/SCRIPTS/images/ | |
| cp /home/wapack/Desktop/SCRIPTS/images/wolftrap300.png /usr/share/lxde/wallpapers/lxde_blue.jpg | |
| sed -i '30s/.*/bg=\/home\/wapack\/Desktop\/SCRIPTS\/images\/wolftrap300.png/' /etc/lxdm/default.conf |
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 | |
| # To Do: | |
| # * Prompt user for IP | |
| # * Prompt user for target directory | |
| # * Make final filename a variable and prompt | |
| # * [OPTIONAL]: Make the script print ASCII art & play obnoxious music | |
| # $1 = username@ip for ssh machine to retrieve rar from without creating a copy on machine | |
| # $2 = Target directory to tar copy of | |
| # $3 = Directory to save tar to on local machine | |
| ssh -n $1 'tar zcvf - ~/.thunderbird' | cat - > $2 |
NewerOlder