Skip to content

Commit

Permalink
bash.sh aktualisieren
Browse files Browse the repository at this point in the history
uninstall exa, due to lack of maintenance
  • Loading branch information
lkwg82 authored Jan 27, 2024
1 parent bb2d082 commit dfcacd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/bash.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dfcacd3

Please sign in to comment.