Skip to content

Instantly share code, notes, and snippets.

@Exodus111
Created March 24, 2014 19:53
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 Exodus111/9747734 to your computer and use it in GitHub Desktop.
Save Exodus111/9747734 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Kill Conky If Running . If you want to run this conky along with other
# Put a "#" Symbol before the "test" word from below line .
test -z "`pgrep conky`" || killall -9 conky
# The directory of conkyrcs
#conky_dir="./conkyrc"
# The command for start conkys
START="conky -d -c"
# The Conkys
sleep 0.5
$START ~/.conky/conky1
sleep 0.2
$START ~/.conky/conky2
sleep 0.2
$START ~/.conky/conky3
sleep 0.2
$START ~/.conky/conky4
sleep 0.2
$START ~/.conky/conky5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment