From 801d08246e58aee31504ffc36cfea40626df5d47 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 6 Jun 2017 17:35:11 -0300 Subject: Adds xconky kill and restart --- xconky | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'xconky') 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 -- cgit v1.2.3