Update dunst module to include more buttons and history count

- 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
This commit is contained in:
Sravan Balaji
2024-05-03 18:59:48 -04:00
parent fff5a42a45
commit 33a8f5bb9a
3 changed files with 155 additions and 84 deletions

View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
isPaused=$(dunstctl is-paused)
if [[ "$isPaused" == "true" ]]; then
echo "󰂛"
else
echo "󰂚"
fi