Ir ao conteúdo

Remover ou Desabilitar a barra de rolagem overlay – Ubuntu 11.10

Boa noite,

Infelizmente a barra padrão do Ubuntu 11.10 continua a “overlay” que eu particularmente não gosto. Fui testar o método que fizemos no 11.04 e funcionou! (Só testei o de desabilitar)

Utilize este comando:

# echo export LIBOVERLAY_SCROLLBAR=0 > /etc/X11/Xsession.d/80overlayscrollbars

Caso queira testar um dos outros métodos, teste e nos avise se funcionou!

Remover ou Desabilitar a barra de rolagem overlay – Ubuntu 11.04

Abraços,
Matheus

Publicado emUbuntu

12 Comentários

  1. T.J. Crowder T.J. Crowder

    Thank you!!! I had to do it as `sudo vi /etc/X11/Xsession.d/80overlayscrollbars` and then provide the `export LIBOVERLAY_SCROLLBAR=0` part, but it worked a treat when I restarted Unity. Excellent!

  2. Colin D Bennett Colin D Bennett

    As T.J. Crowder noted, your command “sudo echo export LIBOVERLAY_SCROLLBAR=0 > /etc/X11/Xsession.d/80overlayscrollbars” is not quite right, since it runs the “echo” program as root with sudo, then the shell (as your user, NOT root) tries to write the output from echo to the 80overlayscrollbars file, which would fail.

    A trick to make this work is to do

    $ echo export LIBOVERLAY_SCROLLBAR=0 | sudo tee /etc/X11/Xsession.d/80overlayscrollbars

    which runs the “tee” command as root, writing to the file as you intended.

  3. I think I screwed up my linux doing this!

    After writing the intial command (gave me permssion denied), I wrote Colin’s command, seemed to work, restarted. Now when I enter my password to log in it flashes to a black screen briefly, then right back to the login screen). Who knows, could be something totally unrelated.

  4. ^To undo if it’s screwed things up for you:

    Press ctrl+alt+f1 at log in screen.
    log in
    $ sudo rm /etc/X11/Xsession.d/80overlayscrollbars

  5. Juergen Gnoss Juergen Gnoss

    If you like to remove that scrollbars permanently.
    just :
    sudo apt-get remove overlay-scrollbar liboverlay-scrollbar-0.2-0 liboverlay-scrollbar3-0.2-0

    restart X

Deixe um comentário

O seu endereço de e-mail não será publicado. Campos obrigatórios são marcados com *