From 41619778f2a32c9c78422a0bd7b15209bc13f68a Mon Sep 17 00:00:00 2001 From: momo Date: Fri, 23 Sep 2011 21:20:14 +0200 Subject: //util/bin/untouch: initial commit --- util/bin/untouch | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 util/bin/untouch 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 + -- cgit v1.2.3 From d28df2570e5e30da5f6b3d619da1a30cf5f1f6ca Mon Sep 17 00:00:00 2001 From: momo Date: Sat, 24 Sep 2011 01:06:00 +0200 Subject: //streams/strams.db: add RFK to db --- streams/stream.db | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v1.2.3