13 lines
280 B
Bash
13 lines
280 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
pkill conky
|
||
|
|
||
|
widgetsdir="$XDG_CONFIG_HOME/conky/widgets"
|
||
|
if [ -d "$widgetsdir" ]; then
|
||
|
for widget in $widgetsdir/*; do
|
||
|
filename=$(echo $widget | sed "s;$widgetsdir/;;")
|
||
|
[[ $filename =~ ^_.* ]] && continue
|
||
|
conky -q -c "$widget"
|
||
|
done
|
||
|
fi
|