Files
hyprdots/hypr/date
2023-07-24 12:04:11 +05:30

9 lines
207 B
Bash
Executable File

#!/bin/sh
i=5
while [ $i -gt 0 ];do
notify-send -i "/usr/share/icons/Papirus/16x16/panel/clockify-blue.svg" "$(date)" -h "string:x-canonical-private-synchronous:date" -t 1200 &
sleep 1
: $((i-=1))
done