From dfcd9628402f7a60a524cf490375a25aa99d3d93 Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Sat, 14 Aug 2021 11:41:07 -0300 Subject: [PATCH] shell-color-scripts: remove condition to not run not running colorscript inside integrated terminal emulator should not be this script responsability --- shell-color-scripts/colorscript.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/shell-color-scripts/colorscript.sh b/shell-color-scripts/colorscript.sh index df65277..2091534 100755 --- a/shell-color-scripts/colorscript.sh +++ b/shell-color-scripts/colorscript.sh @@ -1,12 +1,6 @@ #!/bin/bash # Simple CLI for shell-color-scripts -# Check if is integrated terminal emulator -if [ -z "$INTEG_EMU" ]; -then : ; else - exit 0 -fi - DIR_COLORSCRIPTS="$HOME/.scripts/shell-color-scripts/colorscripts" list_colorscripts="$(find "${DIR_COLORSCRIPTS}" -printf '%P\n' | tail -n+2 | sort | nl)" length_colorscripts="$(find "${DIR_COLORSCRIPTS}" -printf '%P\n' | tail -n+2 | wc -l)"