2023-10-03 11:12:56 -04:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "usage: blinken TIME"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
while true; do
|
|
|
|
sleep "$1"
|
2024-02-23 18:12:20 -05:00
|
|
|
paplay "$XDG_CONFIG_HOME/xmonad/assets/sound/smb_powerup.wav"
|
2023-10-03 11:12:56 -04:00
|
|
|
notify-send 'gaze into the abyss'
|
2024-06-15 17:43:44 -04:00
|
|
|
sleep 20.0
|
|
|
|
paplay "$XDG_CONFIG_HOME/xmonad/assets/sound/smb_pipe.wav"
|
|
|
|
notify-send 'emerge from the abyss'
|
2023-10-03 11:12:56 -04:00
|
|
|
done
|