From c996f3734818ff7bedfde4fdddc4dfef76240b01 Mon Sep 17 00:00:00 2001 From: Ryan Kes <> Date: Sun, 20 Dec 2020 15:22:57 +0100 Subject: [PATCH] fix(wal): fixed global variables for fish --- wal/.config/wal/templates/colors.fish | 44 +++++++++++++-------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/wal/.config/wal/templates/colors.fish b/wal/.config/wal/templates/colors.fish index 4c2c71a..ef974b1 100644 --- a/wal/.config/wal/templates/colors.fish +++ b/wal/.config/wal/templates/colors.fish @@ -1,32 +1,32 @@ # Shell variables # Generated by 'wal' -set -g wallpaper "{wallpaper}" +set -xg wallpaper "{wallpaper}" # Special -set -g background "{background}" -set -g foreground "{foreground}" -set -g cursor '{cursor}' +set -xg background "{background}" +set -xg foreground "{foreground}" +set -xg cursor '{cursor}' # Colors -set -g color0 "{color0}" -set -g color1 "{color1}" -set -g color2 "{color2}" -set -g color3 "{color3}" -set -g color4 "{color4}" -set -g color5 "{color5}" -set -g color6 "{color6}" -set -g color7 "{color7}" -set -g color8 "{color8}" -set -g color9 "{color9}" -set -g color10 "{color10}" -set -g color11 "{color11}" -set -g color12 "{color12}" -set -g color13 "{color13}" -set -g color14 "{color14}" -set -g color15 "{color15}" +set -xg color0 "{color0}" +set -xg color1 "{color1}" +set -xg color2 "{color2}" +set -xg color3 "{color3}" +set -xg color4 "{color4}" +set -xg color5 "{color5}" +set -xg color6 "{color6}" +set -xg color7 "{color7}" +set -xg color8 "{color8}" +set -xg color9 "{color9}" +set -xg color10 "{color10}" +set -xg color11 "{color11}" +set -xg color12 "{color12}" +set -xg color13 "{color13}" +set -xg color14 "{color14}" +set -xg color15 "{color15}" # FZF colors -set -g -a FZF_DEFAULT_OPTS "--color fg:7,bg:0,hl:1,fg+:232,bg+:1,hl+:255 --color info:7,prompt:2,spinner:1,pointer:232,marker:1" +set -xg -a FZF_DEFAULT_OPTS "--color fg:7,bg:0,hl:1,fg+:232,bg+:1,hl+:255 --color info:7,prompt:2,spinner:1,pointer:232,marker:1" # Fix LS_COLORS being unreadable. -set -g -a LS_COLORS ":su=30;41:ow=30;42:st=30;44:" +set -xg -a LS_COLORS ":su=30;41:ow=30;42:st=30;44:"