11 lines
393 B
Bash
Executable File
11 lines
393 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [ "$(dunstctl is-paused)" = "false" ]; then
|
|
echo "{\"text\": \"\"}"
|
|
#echo "{\"text\": \"\", \"alt\": \"\", \"tooltip\": \"\", \"class\": \"notification\", \"percentage\": 0 }"
|
|
exit 0
|
|
else
|
|
echo "{\"text\": \"\"}"
|
|
#echo "{\"text\": \"\", \"alt\": \"\", \"tooltip\": \"\", \"class\": \"notification\", \"percentage\": 0 }"
|
|
exit 0
|
|
fi
|