diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-07-26 14:54:03 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-07-26 14:54:03 -0700 |
commit | 83b225ebe90e4aae7d1731f4647e5927c298a51c (patch) | |
tree | 0517cff83843bca8b453401f8e58cbfc7c69c3f5 /dots/gtk/.config | |
parent | a9c2f41a78a591ba07047f0bb47d333ac81f003f (diff) | |
download | dotfiles-83b225ebe90e4aae7d1731f4647e5927c298a51c.tar.gz dotfiles-83b225ebe90e4aae7d1731f4647e5927c298a51c.zip |
Adds gtk
Diffstat (limited to 'dots/gtk/.config')
-rw-r--r-- | dots/gtk/.config/gtk-3.0/settings.ini.j2 | 17 | ||||
-rw-r--r-- | dots/gtk/.config/gtk-4.0/settings.ini.j2 | 8 |
2 files changed, 25 insertions, 0 deletions
diff --git a/dots/gtk/.config/gtk-3.0/settings.ini.j2 b/dots/gtk/.config/gtk-3.0/settings.ini.j2 new file mode 100644 index 0000000..7761891 --- /dev/null +++ b/dots/gtk/.config/gtk-3.0/settings.ini.j2 @@ -0,0 +1,17 @@ +[Settings] +gtk-theme-name={{ theme.gtk.theme }} +gtk-icon-theme-name={{ theme.gtk.icons }} +gtk-font-name=Adwaita Sans 11 +gtk-cursor-theme-name={{ theme.gtk.cursor }} +gtk-cursor-theme-size=24 +gtk-toolbar-style=GTK_TOOLBAR_ICONS +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-button-images=0 +gtk-menu-images=0 +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=0 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintslight +gtk-xft-rgba=rgb +gtk-application-prefer-dark-theme=1 diff --git a/dots/gtk/.config/gtk-4.0/settings.ini.j2 b/dots/gtk/.config/gtk-4.0/settings.ini.j2 new file mode 100644 index 0000000..ed65881 --- /dev/null +++ b/dots/gtk/.config/gtk-4.0/settings.ini.j2 @@ -0,0 +1,8 @@ +[Settings] +gtk-theme-name={{ theme.gtk.theme }} +gtk-icon-theme-name={{ theme.gtk.icons }} +gtk-font-name=Adwaita Sans 11 +gtk-cursor-theme-name={{ theme.gtk.cursor }} +gtk-cursor-theme-size=24 +gtk-application-prefer-dark-theme={{ 1 if theme.gtk.prefer_dark else 0 }} + |