From d68375c1337ad551ef14fdc9269c8d531ddb156e Mon Sep 17 00:00:00 2001 From: Andre Ramnitz Date: Thu, 21 Mar 2024 07:45:42 +0100 Subject: [PATCH] bash: fix aliases --- home/.bashrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home/.bashrc b/home/.bashrc index bd82eb01..bde378be 100644 --- a/home/.bashrc +++ b/home/.bashrc @@ -36,17 +36,17 @@ case $(tty) in alias l1='EZA_GRID_ROWS=13 eza -w 220 --group --group-directories-first -1' alias la='EZA_GRID_ROWS=13 eza -w 220 --group --long --grid --group-directories-first -l -a' alias lg='EZA_GRID_ROWS=13 eza -w 220 --group --icons --long --sort=size -t=mod --time-style=iso --group-directories-first' - alias ll='EZA_GRID_ROWS=13 eza -w 220 --group --long --grid --group-directories-first' + alias ll='EZA_GRID_ROWS=13 eza -w 220 --group --long --group-directories-first' alias ls='EZA_GRID_ROWS=13 eza -w 220 --group --group-directories-first --icons' - alias lt='EZA_GRID_ROWS=13 eza -w 220 --group --long --grid --group-directories-first --sort=mod -t=mod --time-style=long-iso' + alias lt='EZA_GRID_ROWS=13 eza -w 220 --group --long --group-directories-first --sort=mod -t=mod --time-style=long-iso' echo tty ;; /dev/pts/[0-9]*) alias l1='EZA_GRID_ROWS=26 eza -w 0 --group --group-directories-first -1' alias la='EZA_GRID_ROWS=26 eza -w 0 --group --long --grid --group-directories-first -l -a' alias lg='EZA_GRID_ROWS=26 eza -w 0 --group --icons --long --sort=size -t=mod --time-style=iso --group-directories-first' - alias ll='EZA_GRID_ROWS=26 eza -w 0 --group --long --grid --group-directories-first' + alias ll='EZA_GRID_ROWS=26 eza -w 0 --group --long --group-directories-first' alias ls='EZA_GRID_ROWS=26 eza -w 0 --group --group-directories-first --icons' - alias lt='EZA_GRID_ROWS=26 eza -w 0 --group --long --grid --group-directories-first --sort=mod -t=mod --time-style=long-iso' + alias lt='EZA_GRID_ROWS=26 eza -w 0 --group --long --group-directories-first --sort=mod -t=mod --time-style=long-iso' echo pts ;; esac -- 2.51.2