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(); } });