mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 12:54:15 +01:00
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:
parent
e80a69c10b
commit
9ae4f4442e
@ -155,6 +155,9 @@ bar {
|
|||||||
|
|
||||||
default_border none
|
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)
|
# Start fcitx (input method of choice)
|
||||||
exec fcitx5
|
exec fcitx5
|
||||||
|
|
||||||
|
17
sway/.config/sway/import-gsettings.sh
Executable file
17
sway/.config/sway/import-gsettings.sh
Executable 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"
|
Loading…
Reference in New Issue
Block a user