Add notification, Use font.pointSize

This commit is contained in:
Ly-sec 2025-08-10 22:02:48 +02:00
parent 5fd3c4a53e
commit b2d3f401c4
8 changed files with 361 additions and 18 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!"