diff options
-rw-r--r-- | streams/stream.db | 1 | ||||
-rwxr-xr-x | util/bin/untouch | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/streams/stream.db b/streams/stream.db index 47ccf7b5..29949980 100644 --- a/streams/stream.db +++ b/streams/stream.db @@ -7,3 +7,4 @@ http://localhost:8000/stream.ogg icecast http://stream2.jungletrain.net:8000 jungletrain http://playlist.tormentedradio.com/tormentedradio.pls tormented http://filebitch.shack:8000 mpd +http://radio.krautchan.net:8000/radio.mp3 radiofreieskrautchan diff --git a/util/bin/untouch b/util/bin/untouch new file mode 100755 index 00000000..17fd46b8 --- /dev/null +++ b/util/bin/untouch @@ -0,0 +1,8 @@ +#!/bin/sh +# +#This script toggles the touchpad on a netbook using synclient. + +status=`synclient|awk '/TouchpadOff/{printf$3}'` +status=`expr \( $status + 1 \) \% 2` +synclient TouchpadOff=$status + |