From df9ac0ae4620060c89c02666be2088927827dffb Mon Sep 17 00:00:00 2001 From: hoellen Date: Tue, 2 Feb 2021 11:46:29 +0100 Subject: [PATCH] Add QT theme config and .local/bin to $PATH --- .config/environment | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.config/environment b/.config/environment index 17dc8f6..cc8670e 100644 --- a/.config/environment +++ b/.config/environment @@ -12,7 +12,7 @@ set -x XKB_DEFAULT_LAYOUT eu,de set -x PASSWORD_STORE_DIR "$HOME/.passwords" # Path: ~/.bin for user scripts -[ -L ~/.bin ] && set -gx PATH ~/.bin $PATH +[ -L ~/.bin ] && set -gx PATH ~/.bin ~/.local/bin $PATH for d in ~/.bin/*/; set -gx PATH $d $PATH; end # man command with color @@ -25,6 +25,10 @@ set -x LESS_TERMCAP_ue (printf "\e[0m") set -x LESS_TERMCAP_us (printf "\e[1;32m") set -x PAGER "less" +# QT theme engines +#set -x QT_STYLE_OVERRIDE kvantum +set -x QT_QPA_PLATFORMTHEME qt5ct + # Set XDG Base Directories set -x XDG_CONFIG_HOME "$HOME/.config" set -x XDG_CACHE_HOME "$HOME/.cache"