Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 2258  / 3 Years ago, fri, july 9, 2021, 5:44:07

What I want to do:


Hide the GNOME Panel while Overview/App Grid is open, but show it on the desktop. So when I go to my activities overview or look at my apps, the panel is not there. But when I am looking at the desktop, it is there, and I can interact with it and everything.


What I've Tried:


I've tried variations of Hide Top Bar extensions without any luck.


Theoretically


You should be able to make an extension to do this, right? I have very very little knowledge of how to make an extension for GNOME, so any help would be appreciated.


More From » gnome

 Answers
6

For the native panel


Install Hide Panel extension by fthx


open ~/.local/share/gnome-shell/extensions/hide-panel@fthx/extension.js


modify AppMenu.container.hide()


        this.showing = Overview.connect('showing', this._show_panel.bind(this));
this.hiding = Overview.connect('hiding', this._hide_panel.bind(this));

to


        this.showing = Overview.connect('hiding', this._show_panel.bind(this));
this.hiding = Overview.connect('showing', this._hide_panel.bind(this));

Voila.


Now this extension hides the panel from overview.


[#766] Saturday, July 10, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
fectlyole

Total Points: 64
Total Questions: 110
Total Answers: 110

Location: Nicaragua
Member since Thu, Feb 3, 2022
2 Years ago
fectlyole questions
Sun, May 8, 22, 02:54, 2 Years ago
Mon, Jun 21, 21, 16:56, 3 Years ago
Mon, Apr 4, 22, 01:30, 2 Years ago
;