blob: 13cb4caeb4933d9a2f35561c73aa6ed1d10df6db (
plain)
1
2
3
4
5
6
7
8
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."
|