diff options
author | root <root@krebs> | 2011-09-24 19:14:40 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-09-24 19:14:40 +0200 |
commit | e239eec5c51fdf6cfe5052820ee050dda3909ae5 (patch) | |
tree | f5ad4ca525b11341ab7a1de1794ba497b9a587d3 | |
parent | 67cbf3751c594aea88a71e350259943370b51b5f (diff) | |
parent | d28df2570e5e30da5f6b3d619da1a30cf5f1f6ca (diff) |
Merge branch 'master' of github.com:krebscode/painload
-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 + |