Ubuntu Natty: activate old scrollbars in Ubuntu Classic
2011-05-04 by xpheas
Natty comes with new overlay scrollbars. The work fine in the filebrowser but not in Eclipse (the overlay does not appear). So i deactivated the new scrollbars to get the old one back.
BASH-Code:
| sudo su echo "export LIBOVERLAY_SCROLLBAR=0" > /etc/X11/Xsession.d/80-disableoverlayscrollbars |
« back
2011-05-20 by James Jones
echo is a bash built-in, so sudo echo will fail. There is an actual echo program, though, so you should replace "echo" with "`which echo`" in the above.