#!/bin/bash
# Filename: timer
# robz simple reminder script
# Create a launcher to run this from your panel.
SOUND=/home//Audio/2tone.wav
ICON=/usr/share/icons/hicolor/scalable/apps/gnome-panel-clock.svg
COUNT=$(zenity\
--title ""\
--window-icon $ICON\
--text "Countdown timer"\
--entry-text "eg. 10s or 5m or 2h"\
--entry)
sleep $COUNT
notify-send -i $ICON "## COUNTDOWN TIMER ####" "#### TIMES UP ############"
/usr/bin/canberra-gtk-play --volume 6 -f $SOUND
exit
# Filename: timer
# robz simple reminder script
# Create a launcher to run this from your panel.
SOUND=/home/
ICON=/usr/share/icons/hicolor/scalable/apps/gnome-panel-clock.svg
COUNT=$(zenity\
--title ""\
--window-icon $ICON\
--text "Countdown timer"\
--entry-text "eg. 10s or 5m or 2h"\
--entry)
sleep $COUNT
notify-send -i $ICON "## COUNTDOWN TIMER ####" "#### TIMES UP ############"
/usr/bin/canberra-gtk-play --volume 6 -f $SOUND
exit
Powered by ScribeFire.
No comments:
Post a Comment