Created
March 24, 2014 19:53
-
-
Save Exodus111/9747734 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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