- Change filesystem module interval to 10 minutes - Add more modules for dunst - Change power menu module icon - Change some media module components from scripts to text
9 lines
129 B
Bash
Executable File
9 lines
129 B
Bash
Executable File
#!/usr/bin/env bash
|
|
isPaused=$(dunstctl is-paused)
|
|
|
|
if [[ "$isPaused" == "true" ]]; then
|
|
echo ""
|
|
else
|
|
echo ""
|
|
fi
|