From 4485a7beee73e0abd029da6a8ed58c3048f9c984 Mon Sep 17 00:00:00 2001 From: Kristjan Komlosi Date: Thu, 27 Jul 2023 14:52:23 +0200 Subject: [PATCH] VTE --- dot_bashrc | 4 ++++ dot_config/alacritty/alacritty.yml | 2 +- dot_profile | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/dot_bashrc b/dot_bashrc index ed07793..f720219 100644 --- a/dot_bashrc +++ b/dot_bashrc @@ -144,3 +144,7 @@ ex () } eval "$(thefuck --alias)" eval "$(jump shell)" +#tilix fix +if [ $TILIX_ID ] || [ $VTE_VERSION ]; then + source /etc/profile.d/vte.sh +fi diff --git a/dot_config/alacritty/alacritty.yml b/dot_config/alacritty/alacritty.yml index 2e42748..92ef6e7 100644 --- a/dot_config/alacritty/alacritty.yml +++ b/dot_config/alacritty/alacritty.yml @@ -61,7 +61,7 @@ window: # # Window opacity as a floating point number from `0.0` to `1.0`. # The value `0.0` is completely transparent and `1.0` is opaque. - opacity: 0.94 + opacity: 0.97 # Startup Mode (changes require restart) # diff --git a/dot_profile b/dot_profile index 930cb7a..53d2b50 100644 --- a/dot_profile +++ b/dot_profile @@ -4,3 +4,4 @@ export QT_QPA_PLATFORMTHEME="qt5ct" export QT_AUTO_SCREEN_SCALE_FACTOR=0 export GTK2_RC_FILES="$HOME/.gtkrc-2.0" export PS1="[\[$(tput sgr0)\]\[\033[38;5;10m\]\u@\h\[$(tput sgr0)\]:\[$(tput sgr0)\]\[\033[38;5;14m\]\w\[$(tput sgr0)\]]\\$ \[$(tput sgr0)\]" +export PATH="$PATH:/home/kristjank/.cargo/bin"