fix: moved exa to eza, since exa is unmaintained

This commit is contained in:
Tobias Schmidl 2023-11-13 13:34:37 +01:00
parent 16673a9e1a
commit 76db98b0fc
2 changed files with 21 additions and 21 deletions

21
exa.zsh
View file

@ -1,21 +0,0 @@
#! /bin/zsh
# SPDX-FileCopyrightText: 2023 Tobias Schmidl
#
# SPDX-License-Identifier: GPL-3.0-or-later
# shellcheck disable=all
alias exa='exa -FHhg@ --git --binary --time-style long-iso'
alias exal='exa -l'
function exat() {
[[ "$1" != <-> ]] && { echo "Usage: exat <depth> [path]"; exit 1 };
depth="$1";
shift;
exal -T -L $depth $@;
}
alias e='exa -l'
alias ea='exa -la'
alias eg='exa -Gl'
alias et='exat'

21
eza.zsh Normal file
View file

@ -0,0 +1,21 @@
#! /bin/zsh
# SPDX-FileCopyrightText: 2023 Tobias Schmidl
#
# SPDX-License-Identifier: GPL-3.0-or-later
# shellcheck disable=all
alias eza='eza -FHhg@ --git --binary --time-style long-iso'
alias ezal='eza -l'
function ezat() {
[[ "$1" != <-> ]] && { echo "Usage: ezat <depth> [path]"; exit 1 };
depth="$1";
shift;
ezal -T -L $depth $@;
}
alias e='eza -l'
alias ea='eza -la'
alias eg='eza -Gl'
alias et='ezat'