16 lines
335 B
Bash
Executable File
16 lines
335 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SESSIONFILE=$HOME/.config/conky/conky-sessionfile
|
|
while read -r line; do
|
|
THIS_CONKY=$(echo $line | awk '{print $3}')
|
|
CONKYRC=${THIS_CONKY//\'/}
|
|
|
|
if ! pgrep -f "${CONKYRC//\~/}"
|
|
then
|
|
conky -c "${CONKYRC//\~/$HOME}" &
|
|
else
|
|
pkill -f "${CONKYRC//\~/}"
|
|
fi
|
|
done < $SESSIONFILE
|
|
exit 0
|