From 6f2be86f043fe94e88cf35b6a29d5db6bda2e1ef Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Tue, 3 Oct 2023 11:12:56 -0400 Subject: [PATCH] ADD blinky script --- dot_bin/executable_blinken | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 dot_bin/executable_blinken diff --git a/dot_bin/executable_blinken b/dot_bin/executable_blinken new file mode 100644 index 0000000..b74ad07 --- /dev/null +++ b/dot_bin/executable_blinken @@ -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