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