From 6b39d149a1f7eb53bb923b055960fef70335aedd Mon Sep 17 00:00:00 2001 From: Andre Ramnitz Date: Thu, 28 Nov 2024 18:43:00 +0100 Subject: [PATCH] fish: always activate default python venv --- dot-config/fish/config.fish | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dot-config/fish/config.fish b/dot-config/fish/config.fish index 603a8bca..c5cc6879 100644 --- a/dot-config/fish/config.fish +++ b/dot-config/fish/config.fish @@ -8,7 +8,8 @@ if status is-interactive command -v fastfetch && command fastfetch -c ~/.config/fastfetch/config.jsonc source (/usr/bin/starship init fish --print-full-init | psub) set -g fish_greeting - trap "sh ~/.local/bin/base16-flavours" "SIGUSR1" + trap "sh ~/.local/bin/base16-flavours" "SIGUSR1" + . ~/venv/bin/activate.fish end if test "$DISPLAY" = "" -a "$WAYLAND_DISPLAY" = "" -a "$XDG_VTNR" = 1 -- 2.51.2