daily pastebin goal
86%
SHARE
TWEET

Untitled

a guest Jan 19th, 2015 172 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #!/bin/bash
  2. SSID=$(iwgetid -r)
  3. if [ "$SSID" = "freeTether" ]; then
  4.         notify-send "Connected to $SSID, stopping dropbox!"
  5.         logger -s "Connected to $SSID, stopping dropbox!"
  6.         killall dropbox
  7. else
  8.         notify-send "Connected to $SSID, starting dropbox!"
  9.         logger -s "Connected to $SSID, starting dropbox!"
  10.         sudo -u nick /usr/bin/dropbox start
  11. fi
RAW Paste Data
Top