aboutsummaryrefslogtreecommitdiff
path: root/xconky
diff options
context:
space:
mode:
Diffstat (limited to 'xconky')
-rwxr-xr-xxconky17
1 files changed, 16 insertions, 1 deletions
diff --git a/xconky b/xconky
index dcd4aa7..86b7d60 100755
--- a/xconky
+++ b/xconky
@@ -39,12 +39,23 @@ function xconky_fs_home {
# Refresh all instances
function xconky_refresh {
# Clear cache
- brweather --clean-cache
+ #brweather --clean-cache
# Send HUP
killall -USR1 conky
}
+# Kill all instances
+function xconky_kill {
+ kill -9 `pidof conky`
+}
+
+# Restart all instances
+function xconky_restart {
+ xconky_kill
+ xconky_start
+}
+
# Check
if ! which conky &> /dev/null; then
exit
@@ -59,4 +70,8 @@ elif [ "$1" = "fs_home" ]; then
xconky_fs_home
elif [ "$1" = "refresh" ]; then
xconky_refresh
+elif [ "$1" = "kill" ]; then
+ xconky_kill
+elif [ "$1" = "restart" ]; then
+ xconky_restart
fi