fish: remove obsolete $base16_theme check

Remove the obsolete $base16_theme check which was incorrectly taken from
[1] as $base16_theme is unused in Stylix.

[1]: https://github.com/tomyun/base16-fish/issues/7#issuecomment-963376055

Closes: https://github.com/danth/stylix/issues/538
Fixes: 94d70292d0 ("fish: fix base16-fish causing startup issues with tmux (#503)")
Link: https://github.com/danth/stylix/pull/539

Tested-by: Donovan Glover <donovan@dglover.co>
Approved-by: Donovan Glover <donovan@dglover.co>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
Luna Simons 2024-08-30 18:19:41 +02:00 committed by NAHO
parent 6c895c6b42
commit 3a4101c4f4
No known key found for this signature in database
GPG key ID: 229CB671D09B95F5

View file

@ -8,7 +8,7 @@ in ''
source ${theme}
# See https://github.com/tomyun/base16-fish/issues/7 for why this condition exists
if test -n "$base16_theme" && status --is-interactive && test -z "$TMUX"
if status --is-interactive && test -z "$TMUX"
base16-${config.lib.stylix.colors.slug}
end
''