dotfiles/dot_bin/executable_blinken

13 lines
221 B
Plaintext
Raw Normal View History

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"
paplay "$XDG_CONFIG_HOME/xmonad/sound/smb_powerup.wav"
notify-send 'gaze into the abyss'
done