ADD blinky script

This commit is contained in:
Nathan Dwarshuis 2023-10-03 11:12:56 -04:00
parent 1e3067fc3b
commit 6f2be86f04
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#! /usr/bin/env bash
if [ -z "$1" ]; then
echo "usage: blinken TIME"
exit 1
fi
while true; do
sleep "$1"
paplay "$XDG_CONFIG_HOME/xmonad/sound/smb_powerup.wav"
notify-send 'gaze into the abyss'
done