sway: Style GTK applications under Wayland

This fixes an issue where our settings.ini wasn't being applied on
Wayland.
This commit is contained in:
Donovan Glover 2022-03-23 21:08:02 -04:00
parent e80a69c10b
commit 9ae4f4442e
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 20 additions and 0 deletions

View File

@ -155,6 +155,9 @@ bar {
default_border none
# Import gsettings so GTK applications look the same under sway/wayland as bspwm/xorg
exec_always ~/.config/sway/import-gsettings.sh
# Start fcitx (input method of choice)
exec fcitx5

View File

@ -0,0 +1,17 @@
#!/bin/sh
# Usage: ./import-gsettings
# Source: https://github.com/swaywm/sway/wiki/GTK-3-settings-on-Wayland
config="${XDG_CONFIG_HOME:-$HOME/.config}/gtk-3.0/settings.ini"
if [ ! -f "$config" ]; then exit 1; fi
gnome_schema="org.gnome.desktop.interface"
gtk_theme="$(grep 'gtk-theme-name' "$config" | sed 's/.*\s*=\s*//')"
icon_theme="$(grep 'gtk-icon-theme-name' "$config" | sed 's/.*\s*=\s*//')"
cursor_theme="$(grep 'gtk-cursor-theme-name' "$config" | sed 's/.*\s*=\s*//')"
font_name="$(grep 'gtk-font-name' "$config" | sed 's/.*\s*=\s*//')"
gsettings set "$gnome_schema" gtk-theme "$gtk_theme"
gsettings set "$gnome_schema" icon-theme "$icon_theme"
gsettings set "$gnome_schema" cursor-theme "$cursor_theme"
gsettings set "$gnome_schema" font-name "$font_name"