Saturday, May 18, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 15609  / 3 Years ago, thu, september 9, 2021, 8:10:51

I have tried many solutions, but bottom bar is still there.





Tried with Tweak Tool but there's no option Remove bottom bar extension in this version.
Any help?



OS: Ubuntu 14.04


More From » gnome

 Answers
5

In order to remove bottom panel follow the below steps from Wey on the Arch Linux forums:





  • Edit /usr/share/gnome-shell/theme/gnome-shell.css: Search for
    #message-tray and comment the block out with /* ... */. This will remove the black bar, but not the icons and their text.

  • Next go to /usr/share/gnome-shell/js/ui/messageTray.js: Search for ICON_SIZE (its in line 881 here) and set it to 0:



    ICON_SIZE: 0,


    About three lines below it states



    this.title = title;


    Make it



    this.title = '';


    This makes the whole thing disappear.





(OR) use yanir's solution from the same thread:





  • Edit /usr/share/gnome-shell/theme/gnome-shell.css: Search for
    #message-tray and comment the block out with /* ... */. This will remove the black bar, but not the icons and their text.

  • edit /usr/share/gnome-shell/js/ui/messageTray.js the following way:
    (the last class at the end of the file)



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



[#22419] Saturday, September 11, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
herriail

Total Points: 11
Total Questions: 122
Total Answers: 118

Location: Peru
Member since Tue, Mar 16, 2021
3 Years ago
;