dotfiles/dot_bin/executable_blinken

13 lines
228 B
Bash

#! /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/assets/sound/smb_powerup.wav"
notify-send 'gaze into the abyss'
done