From 39417823fe83d2674daec7c94486a6a2d9713b24 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 26 Jul 2021 19:23:56 +0200 Subject: [PATCH] solarize: remove useless eval No point in this eval, as it will not affect the environment of the calling shell. --- bin/,solarize | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bin/,solarize b/bin/,solarize index fbc2868..2961c1a 100755 --- a/bin/,solarize +++ b/bin/,solarize @@ -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