-
Notifications
You must be signed in to change notification settings - Fork 34
revert: switch back to LogoMenu from Custom Command Menu #294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| # Relocatable schemas are located here in dconf | ||
| # Some Gnome extensions don't ship gschema XML, so their settings also need to go in dconf | ||
|
|
||
| [org/gnome/shell/extensions/Logo-menu] | ||
| symbolic-icon=true | ||
| menu-button-icon-image=30 | ||
| menu-button-icon-size=20 | ||
| menu-button-terminal='xdg-terminal-exec' | ||
| menu-button-system-monitor='/usr/bin/missioncenter-helper' | ||
| menu-button-extensions-app='com.mattjakeman.ExtensionManager.desktop' | ||
| menu-button-software-center='/usr/bin/flatpak run io.github.kolunmi.Bazaar' | ||
| show-activities-button=true | ||
| show-lockscreen=false | ||
| show-power-option=false | ||
| show-gamemode=false | ||
| hide-forcequit=true | ||
| show-distroshelf=true |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
|
|
||
| [org.gnome.shell] | ||
| favorite-apps = ['com.fyralabs.Readymade.desktop', 'org.mozilla.firefox.desktop', 'org.mozilla.Thunderbird.desktop', 'org.gnome.Nautilus.desktop', 'io.github.kolunmi.Bazaar.desktop', 'org.gnome.Software.desktop', 'code.desktop'] | ||
| enabled-extensions = ['appindicatorsupport@rgcjonas.gmail.com', 'dash-to-dock@micxgx.gmail.com', 'blur-my-shell@aunetx', 'gsconnect@andyholmes.github.io', 'custom-command-list@storageb.github.com', 'tailscale@joaophi.github.com', 'search-light@icedman.github.com'] | ||
| enabled-extensions = ['appindicatorsupport@rgcjonas.gmail.com', 'dash-to-dock@micxgx.gmail.com', 'blur-my-shell@aunetx', 'gsconnect@andyholmes.github.io', 'logomenu@aryan_k', 'tailscale@joaophi.github.com', 'search-light@icedman.github.com'] | ||
|
|
||
| [org.gnome.desktop.background] | ||
| picture-uri='file:///usr/share/backgrounds/bluefin/12-bluefin.xml' | ||
|
|
@@ -86,11 +86,19 @@ keybindings='' | |
| new-tab=false | ||
| flatpak='off' | ||
|
|
||
| [org.gnome.shell.extensions.custom-command-list] | ||
| menuoptions-setting=2 | ||
| menuicon-setting='ublue-logo-symbolic' | ||
| menulocation-setting=1 | ||
| show-arrow=false | ||
| [org.gnome.shell.extensions.Logo-menu] | ||
| symbolic-icon=true | ||
| menu-button-icon-image=30 | ||
| menu-button-terminal='xdg-terminal-exec' | ||
| menu-button-system-monitor='/usr/bin/missioncenter-helper' | ||
| menu-button-extensions-app='com.mattjakeman.ExtensionManager.desktop' | ||
| menu-button-software-center='/usr/bin/flatpak run io.github.kolunmi.Bazaar' | ||
| show-activities-button=true | ||
| show-lockscreen=false | ||
| show-power-option=false | ||
| show-gamemode=false | ||
| hide-forcequit=true | ||
| show-distroshelf=true | ||
|
|
||
| [org.gnome.shell.extensions.search-light] | ||
| shortcut-search=['<Super>space'] | ||
|
|
@@ -125,6 +133,6 @@ audible-bell=false | |
| profile-uuids=['2871e8027773ae74d6c87a5f659bbc74'] | ||
| default-profile-uuid='2871e8027773ae74d6c87a5f659bbc74' | ||
|
|
||
| # Custom Command Menu commands are located in dconf | ||
| # LogoMenu extension uses relocatable schemas, so additional settings are in dconf | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This comment is inaccurate. The Logo-menu extension uses a fixed schema ID ( |
||
|
|
||
| # SearchLight extension misses gschema XML file, so it's located in dconf | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The configuration for the Logo-menu extension is duplicated between this override file and the newly added dconf file
system_files/bluefin/etc/dconf/db/distro.d/04-bluefin-logomenu-extension. In GNOME, dconf database entries (compiled fromdistro.d) take precedence over GSettings overrides, meaning the entries here are effectively shadowed and will not take effect if they differ. To maintain a single source of truth and follow the repository's pattern for extension defaults, all settings should be consolidated here and the redundant dconf file should be removed. I have included the missingmenu-button-icon-sizekey from the dconf file in the suggestion below.