blob: 25b322b88904fb4fd9316759222afbc9327569b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Start background programs ##########################################
if [ -x "`which daemon`" ]; then
daemon -i maildirproc.att maildirproc
daemon -i maildirproc.purdue maildirproc -r ~/.maildirproc/purdue.rc
daemon batterymon 20 "
amixer sset Master unmute 100%;
espeak 'PLUG ME IN';
sleep .2;"
fi
|