7 lines
112 B
Bash
7 lines
112 B
Bash
|
#!/bin/bash
|
||
|
if [ "$(dunstctl is-paused)" = "true" ]; then
|
||
|
echo "notifications disabled"
|
||
|
else
|
||
|
echo ""
|
||
|
fi
|