This commit is contained in:
2024-01-08 20:50:29 +01:00
commit 2fb62acda6
121 changed files with 16413 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
ps_out=`ps -ef | grep conky | grep -v 'grep' | grep -v $0`
result=$(echo $ps_out | grep "$1")
echo $result
if [[ "$result" != "" ]];then
killall conky
else
conky -c ~/.config/conky/mocha.conf
fi