notifications are for `dunst` a notification handler for my setup I added volume, charging, battery, time, and brightness notifications
5 lines
68 B
Bash
5 lines
68 B
Bash
#!/bin/bash
|
|
while true; do
|
|
~/.scripts/notifs/battery
|
|
sleep 1
|
|
done
|