aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xubuntu-fixes.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/ubuntu-fixes.sh b/ubuntu-fixes.sh
new file mode 100755
index 0000000..13cb4ca
--- /dev/null
+++ b/ubuntu-fixes.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+# This fixes wireshark
+# see: http://askubuntu.com/questions/34214/how-do-i-disable-overlay-scrollbars
+touch ~/.xprofile
+sed -i -e '/LIBOVERLAY_SCROLLBAR/d' ~/.xprofile
+echo 'export LIBOVERLAY_SCROLLBAR=0' >> ~/.xprofile
+
+echo "You must log out and back in for all changes to take effect."