Mercurial > index.cgi > dotfiles
comparison .bash_aliases @ 100:d635f7e31032
'tock' function added:
* Creates a sound effect near the end of a standard JT65 receive window for
easier monitoring of transmissions without having to watch the app the whole
time.
author | Steve Huston <huston@srhuston.net> |
---|---|
date | Wed, 18 Dec 2013 16:58:20 -0500 |
parents | 9d5fcbb36232 |
children | ecb2cac8df97 |
comparison
equal
deleted
inserted
replaced
98:3d2378f5856a | 100:d635f7e31032 |
---|---|
148 alias condor_check="ls -lat /u/condor/hosts/*/log/MasterLog" | 148 alias condor_check="ls -lat /u/condor/hosts/*/log/MasterLog" |
149 alias slurp="wget -r -l1 -np -nd -A.mp3" | 149 alias slurp="wget -r -l1 -np -nd -A.mp3" |
150 | 150 |
151 # Other Functions | 151 # Other Functions |
152 | 152 |
153 tock() { | |
154 while true ; do | |
155 if [ `date +%S` -gt 42 ] ; then | |
156 if [ `date +%S` -lt 47 ] ; then | |
157 afplay /System/Library/Sounds/Pop.aiff & | |
158 fi | |
159 fi | |
160 sleep 1 | |
161 done > /dev/null 2>&1 | |
162 } | |
153 | 163 |
154 update_toodledo() { | 164 update_toodledo() { |
155 case `hostname -s` in | 165 case `hostname -s` in |
156 xanadu|syrinx) | 166 xanadu|syrinx) |
157 TOODLEDO_CMDS="toodledo tasks @Work; toodledo tasks @Anywhere" | 167 TOODLEDO_CMDS="toodledo tasks @Work; toodledo tasks @Anywhere" |