13 lines
221 B
Plaintext
13 lines
221 B
Plaintext
|
#! /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
|