Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
7
rated 0 times [  7] [ 0]  / answers: 1 / hits: 9833  / 2 Years ago, wed, november 2, 2022, 9:16:34

I tried to use the gmenu-simple editor, but it said it can't find it. It's just for a good look.


More From » 11.10

 Answers
3

A solution taken from the arch-wiki:



When doing a GNOME install, some unwanted icons might appear in the panel. To remove the icons, edit the GNOME panel script.




For example, to remove the universal access icon. Remove a11y from
the AREA_ORDER line and comment out the a11y line in
AREA_SHELL_IMPLEMENTATION



/usr/share/gnome-shell/js/ui/panel.js

const STANDARD_STATUS_AREA_ORDER = ['ally', 'keyboard', 'volume', 'network', 'bluetooth', 'battery', 'userMenu'];
const STANDARD_STATUS_AREA_SHELL_IMPLEMENTATION = {
'a11y': imports.ui.status.accessibility.ATIndicator
'volume': imports.ui.status.volume.Indicator,
'battery': imports.ui.status.power.Indicator,
'keyboard': imports.ui.status.keyboard.XKBIndicator,
'userMenu': imports.ui.userMenu.UserMenuButton
};


to



/usr/share/gnome-shell/js/ui/panel.js

const STANDARD_STATUS_AREA_ORDER = ['keyboard', 'volume', 'network', 'bluetooth' 'battery', 'userMenu'];
const STANDARD_STATUS_AREA_SHELL_IMPLEMENTATION = {
//'a11y': imports.ui.status.accessibility.ATIndicator
'volume': imports.ui.status.volume.Indicator,
'battery': imports.ui.status.power.Indicator,
'keyboard': imports.ui.status.keyboard.XKBIndicator,
'userMenu': imports.ui.userMenu.UserMenuButton
};


save your results and restart the shell to see results:



Alt+F2
r
Enter



I am using this right now and it works with my gnome-shell!


[#39820] Friday, November 4, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ranquctive

Total Points: 391
Total Questions: 103
Total Answers: 104

Location: South Sudan
Member since Thu, Feb 4, 2021
3 Years ago
ranquctive questions
;