Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 31 lines 721 B view raw
1#!/bin/bash 2 3# Demo script for ac-event-daemon notifications 4# Shows different notification types with timing 5 6echo "🎬 Starting ac-event-daemon notification demo..." 7echo "Make sure the daemon is running on the host!" 8echo "" 9 10notifications=( 11 "success:BUILD COMPLETED" 12 "info:STARTING PROCESS" 13 "error:CONNECTION FAILED" 14 "success:TASK FINISHED" 15 "info:LOADING DATA" 16 "warning:DISK SPACE LOW" 17) 18 19for notification in "${notifications[@]}"; do 20 type="${notification%:*}" 21 message="${notification#*:}" 22 23 echo "📡 Sending: $type -> $message" 24 ./ac-notify "$type" "$message" 25 26 # Wait between notifications to see each overlay 27 sleep 4 28done 29 30echo "" 31echo "🎉 Demo complete!"