Advertisement
GuessGen

min.sh

Apr 21st, 2012
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.17 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. #sudo apt-get install wmctrl
  4.  
  5. var="/tmp/switch"
  6.  
  7. if [ -a "$var" ]
  8. then
  9.     wmctrl -k off && rm /tmp/switch
  10. else
  11.     wmctrl -k on && touch /tmp/switch  
  12. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement