shell Gnome - Remova o painel inferior

5

Eu tentei muitas soluções, mas a barra inferior ainda está lá.

Tentei com o Tweak Tool, mas não há opção Remover extensão da barra inferior nesta versão. Alguma ajuda?

SO: Ubuntu 14.04

    
por Marko Kojić 12.11.2014 / 20:37

2 respostas

1

Para remover o painel inferior, siga os passos abaixo dos Fóruns do Arch Linux :

  
  • Edite /usr/share/gnome-shell/theme/gnome-shell.css: pesquise por   # message-tray e comente o bloco com / * ... * /. Isso removerá a barra preta, mas não os ícones e seu texto.
  •   
  • Em seguida, vá para /usr/share/gnome-shell/js/ui/messageTray.js: Pesquise por ICON_SIZE (está na linha 881 aqui) e defina-o como 0:

    ICON_SIZE: 0,
    
         

    Cerca de três linhas abaixo declaram

    this.title = title;
    
         

    Faça isso

    this.title = '';
    
         

    Isso faz a coisa toda desaparecer.

  •   

(OR) usa a solução do yanir do mesmo tópico:

  
  • Edite /usr/share/gnome-shell/theme/gnome-shell.css: pesquise por   # message-tray e comente o bloco com / * ... * /. Isso removerá a barra preta, mas não os ícones e seu texto.
  •   
  • edite /usr/share/gnome-shell/js/ui/messageTray.js da seguinte maneira:   (a última aula no final do arquivo)

    const SystemNotificationSource = new Lang.Class({
        Name: 'SystemNotificationSource',
        Extends: Source,
        _init: function() {
            this.parent(_("System Information"));
            this._setSummaryIcon(this.createNotificationIcon());
        },
        createNotificationIcon: function() {
    //        return new St.Icon({ icon_name: 'dialog-information',
    //                             icon_type: St.IconType.SYMBOLIC,
    //                             icon_size: this.ICON_SIZE });
            return 0;
        },
        open: function() {
            this.destroy();
        }
    });
    
  •   
    
por vembutech 12.11.2014 / 21:02
2

Uma maneira fantástica de fazer isso, por meio de uma extensão do Gnome Shell e sem hackear códigos, é instalar o Dash to Dock :

link

Você não precisa ter o dock ativado.

Na guia principal, defina:

  • Dock is fixed and always visible a OFF e
  • Autohide and Intellihide to OFF

Na guia opcional, defina:

  • Make message tray insensitive to mouse events a ON .

Voila!

    
por yew 24.03.2015 / 05:08

Tags