panel: Add quick settings indicator

The new indicator will eventually expose all the system status
items that are currently provided by the aggregate menu, but in
a more accessible form than the current submenu-heavy menu.

Right now this just adds the new empty indicator to the top bar,
alongside the existing aggregate menu.

We can then move items over one-by-one.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2392>
This commit is contained in:
Florian Müllner
2022-07-24 19:49:58 +02:00
committed by Marge Bot
parent f18d103f83
commit 84a62cc868
2 changed files with 25 additions and 3 deletions

View File

@ -59,7 +59,7 @@ const _modes = {
panel: {
left: [],
center: ['dateMenu'],
right: ['dwellClick', 'a11y', 'keyboard', 'aggregateMenu'],
right: ['dwellClick', 'a11y', 'keyboard', 'quickSettings', 'aggregateMenu'],
},
panelStyle: 'login-screen',
},
@ -71,7 +71,7 @@ const _modes = {
panel: {
left: [],
center: [],
right: ['dwellClick', 'a11y', 'keyboard', 'aggregateMenu'],
right: ['dwellClick', 'a11y', 'keyboard', 'quickSettings', 'aggregateMenu'],
},
panelStyle: 'unlock-screen',
},
@ -94,7 +94,7 @@ const _modes = {
panel: {
left: ['activities', 'appMenu'],
center: ['dateMenu'],
right: ['screenRecording', 'screenSharing', 'dwellClick', 'a11y', 'keyboard', 'aggregateMenu'],
right: ['screenRecording', 'screenSharing', 'dwellClick', 'a11y', 'keyboard', 'quickSettings', 'aggregateMenu'],
},
},
};