solarize: remove useless eval

No point in this eval, as it will not affect the environment of the
calling shell.
This commit is contained in:
Fernando Schauenburg 2021-07-26 19:23:56 +02:00
parent a75ea8ee8e
commit 39417823fe

View file

@ -128,11 +128,6 @@ main() {
tmux set-environment -g BACKGROUND "$BACKGROUND"
tmux source-file "$XDG_CONFIG_HOME/tmux/tmux-colors.conf"
fi
ls_colors="$HOME/.config/dircolors/solarized-$BACKGROUND"
if type dircolors >/dev/null 2>&1 && [ -f "$ls_colors" ]; then
eval "$(dircolors "$ls_colors")"
fi
}
main