You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm on Arch, fish 3.6.1-1 and installed the theme with fisher. On starting a terminal, I get:
test: Missing argument at index 3
= light
^
~/.config/fish/functions/paradox_change_color_scheme.fish (line 21):
if test $scheme = "light"
^
in function 'paradox_change_color_scheme'
called on line 58 of file ~/.config/fish/conf.d/paradox_colors.fish
from sourcing file ~/.config/fish/conf.d/paradox_colors.fish
called on line 248 of file /usr/share/fish/config.fish
from sourcing file /usr/share/fish/config.fish
called during startup
Changing the line
if test $scheme = "light"
to
if test "$scheme" = "light"
seems to prevent this error from occuring.
The text was updated successfully, but these errors were encountered:
I replaced this: if test $scheme = "light"
with this: if test $scheme -e "light"
and it works for me :)
Also I removed one extra row before separator in conf.d/paradox_command_separator.fish
replaced: echo -s \n$status_color $status_prefix (string repeat -n $width '━')
with: echo -s $status_color $status_prefix (string repeat -n $width '━')
I'm on Arch, fish 3.6.1-1 and installed the theme with fisher. On starting a terminal, I get:
Changing the line
if test $scheme = "light"
to
if test "$scheme" = "light"
seems to prevent this error from occuring.
The text was updated successfully, but these errors were encountered: