From 05b41da54101a2ed3c10d144901f2654490ace18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sun, 14 Apr 2024 02:24:41 +0200 Subject: [PATCH] Move gtk2 config into ~/.config --- dotfiles.yml | 3 ++- zsh/zprofile.j2 | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dotfiles.yml b/dotfiles.yml index 396721f..8f8fc67 100644 --- a/dotfiles.yml +++ b/dotfiles.yml @@ -79,7 +79,7 @@ dotfiles: to: .config/gtk-3.0-overrides/bigger-font/gtk-3.0/settings.ini template: true - from: gtk/gtkrc-2.0 - to: .gtkrc-2.0 + to: .config/gtkrc-2.0 template: true - from: qt/qt5ct.conf to: .config/qt5ct/qt5ct.conf @@ -94,3 +94,4 @@ dotfiles_remove: - .vimrc - .tmux.conf - .i3 + - .gtkrc-2.0 diff --git a/zsh/zprofile.j2 b/zsh/zprofile.j2 index 6a28c54..576e01f 100644 --- a/zsh/zprofile.j2 +++ b/zsh/zprofile.j2 @@ -43,6 +43,8 @@ export GNUPGHOME="$HOME/.gnupg" export PASSWORD_STORE_DIR="$HOME/.password-store" +export GTK2_RC_FILES=${XDG_CONFIG_HOME}/gtkrc-2.0 + umask 0022 {% set env = machine.environment | combine(user.environment) %}