Code Sample |
#!/bin/sh #script by Zak Tarbet clear echo "==========================" echo "= DSL bg changing script =" echo "==========1.0=============" echo echo "========" echo "= Menu =" echo "===================" echo "= 1- Specify file =" echo "= 2- Quit =" echo "===================" read slct if [ "$slct" = "1" ]; then echo "What is the bg location? (i.e. /home/dsl/Wallpaper/myfile.jpg)" read paper2 bsetbg -f $paper2 fi if [ "$slct" = "2" ]; then bash fi |