Skip to content

Instantly share code, notes, and snippets.

@DTrejo
Created March 16, 2012 02:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DTrejo/2048231 to your computer and use it in GitHub Desktop.
Save DTrejo/2048231 to your computer and use it in GitHub Desktop.
how to get dropbox and flux working on your sunlab account
#
# add this to your ~/.bashrc
#
# start dropbox
if [ "$(pidof dropbox)" ]
then
# dont start
echo "dropbox is running"
else
# start
dropbox &
fi
# start flux
if [ "$(pidof xflux)" ]
then
# dont start
echo "xflux is running"
else
# start
xflux -z 02912 -k 2700
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment