ADD blinky script
This commit is contained in:
parent
1e3067fc3b
commit
6f2be86f04
|
@ -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
|
Loading…
Reference in New Issue