diff options
-rwxr-xr-x | bin/getwifi | 6 | ||||
-rwxr-xr-x | bin/killwifi | 4 | ||||
-rwxr-xr-x | bin/startsynergy | 4 | ||||
-rw-r--r-- | src/.stub | 2 |
4 files changed, 16 insertions, 0 deletions
diff --git a/bin/getwifi b/bin/getwifi new file mode 100755 index 0000000..04a7778 --- /dev/null +++ b/bin/getwifi @@ -0,0 +1,6 @@ +#!/bin/sh + +ifconfig eth0 down +ifconfig eth1 down +iwconfig eth1 txpower on +dhclient eth1 diff --git a/bin/killwifi b/bin/killwifi new file mode 100755 index 0000000..c10607c --- /dev/null +++ b/bin/killwifi @@ -0,0 +1,4 @@ +#!/bin/sh + +ifconfig eth1 down +iwconfig eth1 txpower off diff --git a/bin/startsynergy b/bin/startsynergy new file mode 100755 index 0000000..cb831fd --- /dev/null +++ b/bin/startsynergy @@ -0,0 +1,4 @@ +#!/bin/sh + +ssh -L 24800:snark:24800 snark & +synergyc localhost diff --git a/src/.stub b/src/.stub new file mode 100644 index 0000000..84df427 --- /dev/null +++ b/src/.stub @@ -0,0 +1,2 @@ +This directory is for (mostly) unedited third party source code. +This stub file is so that git will recognize the directory. |