-
-
Notifications
You must be signed in to change notification settings - Fork 157
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
feat: apply theming updates & enable xwayland scaling #1813
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ tap-to-click=true | |
[org.gnome.desktop.peripherals.touchpad] | ||
tap-to-click=true | ||
|
||
[org.gnome.shell] | ||
[org.gnome.shell] | ||
favorite-apps = ['org.mozilla.firefox.desktop', 'org.mozilla.Thunderbird.desktop', 'org.gnome.Nautilus.desktop', 'org.gnome.Rhythmbox3.desktop', 'org.libreoffice.LibreOffice.writer.desktop', 'org.gnome.Software.desktop', 'code.desktop', 'ubuntu.desktop', 'yelp.desktop'] | ||
enabled-extensions = ['[email protected]', '[email protected]', 'blur-my-shell@aunetx', '[email protected]', 'logomenu@aryan_k', '[email protected]', '[email protected]'] | ||
|
||
|
@@ -24,13 +24,11 @@ secondary-color='FFFFFF' | |
[org.gnome.desktop.interface] | ||
enable-hot-corners=false | ||
clock-show-weekday=true | ||
cursor-theme="Yaru" | ||
icon-theme="Yaru-blue" | ||
gtk-theme="Yaru-blue" | ||
font-antialiasing="rgba" | ||
font-name="Ubuntu 12" | ||
document-font-name="Ubuntu 12" | ||
monospace-font-name="Ubuntu Mono 18" | ||
font-name="Inter 12" | ||
document-font-name="Inter 12" | ||
monospace-font-name="JetBrains Mono 18" | ||
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. Should we still use size 18 font by default? 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. I left it at 18 since it was like that before. I'm not opposed to changing this if we feel it's better suited. 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. Note that I picked that based on my own aging eyeballs, we should pick whatever the best default should be. |
||
accent-color="slate" | ||
|
||
[org.gnome.desktop.sound] | ||
allow-volume-above-100-percent=true | ||
|
@@ -39,7 +37,7 @@ theme-name="freedesktop" | |
[org.gnome.desktop.wm.preferences] | ||
button-layout=":minimize,maximize,close" | ||
num-workspaces=4 | ||
titlebar-font="Ubuntu Bold 12" | ||
titlebar-font="Inter Bold 12" | ||
|
||
[org.gnome.desktop.wm.keybindings] | ||
switch-applications=['<Super>Tab'] | ||
|
@@ -77,7 +75,7 @@ sort-directories-first=true | |
sort-directories-first=true | ||
|
||
[org.gnome.mutter] | ||
experimental-features=['scale-monitor-framebuffer'] | ||
experimental-features=['scale-monitor-framebuffer', 'xwayland-native-scaling'] | ||
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. Does this value cause an issue on Gnome 40? 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. Not that I could tell. It just sits unused in versions <47 |
||
check-alive-timeout=uint32 20000 | ||
|
||
[org.gnome.software] | ||
|
@@ -114,6 +112,9 @@ border-radius=1.65 | |
border-color=(0.23, 0.23, 0.23, 1.0) | ||
background-color=(0.0, 0.0, 0.0, 0.8) | ||
|
||
[org.gnome.shell.extensions.blur-my-shell.dash-to-dock] | ||
blur=true | ||
|
||
#-------------- REMAINING SCHEMAS IN THIS SETTING SECTION ARE LOCATED IN DCONF --------------# | ||
# Settings bellow are supported with gschema override, but other settings, which are relocatable schemas, are not. Edit dconfs if you need to modify relocatable schemas. | ||
|
||
|
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.
what is the difference with having --strict removed?
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.
--strict is causing issues in GNOME <47 since the accent color dconf key doesn't exist in these lower versions. The flag causes any errors in the dconf to fail, whereas without it, those problematic keys are just excluded from the compiled data.
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.
If you omit
--strict
from here, you destroy the purpose of running this test.But it's a good point that this gschema test should handle lower Gnome versions better.
So maybe this can be temporarily removed, then put back when this logic gets revamped to support gschema checking for both
:gts
&:latest
? Would be good to comment that here.