From dfcacd3b6e9311a90209fe1d2062485e04a0ea09 Mon Sep 17 00:00:00 2001 From: "Lars K.W. Gohlke" Date: Sat, 27 Jan 2024 17:57:27 +0100 Subject: [PATCH] bash.sh aktualisieren uninstall exa, due to lack of maintenance --- tools/bash.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/bash.sh b/tools/bash.sh index 93cd657..5bb8509 100644 --- a/tools/bash.sh +++ b/tools/bash.sh @@ -30,12 +30,12 @@ export PATH=node_modules/.bin:$PATH alias docker_ocrmypdf='docker run --rm -i --user "$(id -u):$(id -g)" --workdir /data -v "$PWD:/data" jbarlow83/ocrmypdf' -if ! command -v exa >/dev/null; then - brew install exa +if command -v exa >/dev/null; then + brew remove exa # not maintained anymore fi -alias ls='exa -al' -alias ll='exa -alhg' +alias ls='ls -al' +alias ll='ls -lisa' if ! command -v bat >/dev/null; then brew install bat