Skip to content

Instantly share code, notes, and snippets.

@akrito
Created April 27, 2012 16:33
Show Gist options
  • Save akrito/2510614 to your computer and use it in GitHub Desktop.
Save akrito/2510614 to your computer and use it in GitHub Desktop.
.config/byobu/bin/60_dropbox
#!/bin/sh
s=$(/usr/bin/dropbox status)
case "$s" in
"Dropbox isn"*)
echo '💣'
;;
Idle*)
echo '💤'
;;
Downloading*|Indexing*|Uploading*)
echo '🔃'
;;
Starting*|Connecting*)
echo '🕓'
;;
*)
echo $s
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment