Using a bash script for SystemStats instead of ZigStat

This commit is contained in:
quadbyte 2025-08-12 15:07:32 -04:00
parent b68d5c9f4c
commit d009b8d5c8
8 changed files with 234 additions and 160 deletions

11
Bin/test-notifications.sh Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
echo "Sending 8 test notifications..."
# Send 8 notifications with numbers
for i in {1..8}; do
notify-send "Notification $i" "This is test notification number $i of 8"
sleep 1
done
echo "All notifications sent!"