Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

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
Expand Up @@ -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'
Expand Down Expand Up @@ -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
Comment on lines +89 to +101
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

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 from distro.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 missing menu-button-icon-size key from the dconf file in the suggestion below.

[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


[org.gnome.shell.extensions.search-light]
shortcut-search=['<Super>space']
Expand Down Expand Up @@ -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
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This comment is inaccurate. The Logo-menu extension uses a fixed schema ID (org.gnome.shell.extensions.Logo-menu), not a relocatable one. The presence of the configuration block at line 89 confirms it is a standard schema. This comment should be removed along with the redundant dconf file to ensure the configuration remains clear and maintainable.


# SearchLight extension misses gschema XML file, so it's located in dconf
Loading