Skip to content

Commit f1a7df4

Browse files
committed
Replace exa (unmaintained) with eza (community fork)
Luckily the fork did a symlink from exa to eza, so we only need to update the installed package and README entries
1 parent 01c8e7a commit f1a7df4

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@
3030
- zsh-syntax-highlighting
3131
- zsh-autosuggestions
3232
- cargo *(Ubuntu 20.04 or earlier)*
33-
- [exa](https://github.com/ogham/exa) *(Ubuntu 20.10 or later)*
33+
- [eza](https://github.com/eza-community/eza) *(Ubuntu 20.10 or later)*
3434
- [bat](https://github.com/sharkdp/bat)
3535

3636
#### Arch
3737
##### Pacman
3838

3939
- [neofetch](https://archlinux.org/packages/?name=neofetch)
40-
- [exa](https://archlinux.org/packages/?name=exa)
40+
- [eza](https://archlinux.org/packages/?name=eza)
4141
- [bat](https://github.com/sharkdp/bat)
4242
- [zsh](https://archlinux.org/packages/?name=zsh)
4343
- [zsh-syntax-highlighting](https://archlinux.org/packages/?name=zsh-syntax-highlighting)
@@ -55,7 +55,7 @@
5555
- [MesloLGS NF](https://github.com/romkatv/powerlevel10k#meslo-nerd-font-patched-for-powerlevel10k) *(Powerlevel10k recommended font)*
5656
### Other Packages
5757
#### Cargo
58-
- [exa](https://github.com/ogham/exa) *(Ubuntu 20.04 or earlier)*
58+
- [eza](https://github.com/eza-community/eza) *(Ubuntu 20.04 or earlier)*
5959

6060
### Installation script
6161
#### Ubuntu
@@ -66,10 +66,10 @@
6666
# ---
6767
# Ubuntu 20.04 or earlier
6868
sudo apt install cargo
69-
cargo install exa
69+
cargo install eza
7070

7171
# Ubuntu 20.10 or later
72-
sudo apt install exa
72+
sudo apt install eza
7373
# ---
7474

7575
# ---
@@ -92,7 +92,7 @@ For the `MesloLGS NF` font, it's probably better to just follow the instructions
9292
##### Manual
9393
*(these commands use `paru` to install AUR packages)*
9494
```shell
95-
sudo pacman -S zoxide neofetch exa bat zsh zsh-syntax-highlighting zsh-autosuggestions zsh-theme-powerlevel10k
95+
sudo pacman -S zoxide neofetch eza bat zsh zsh-syntax-highlighting zsh-autosuggestions zsh-theme-powerlevel10k
9696
paru -S ttf-meslo-nerd-font-powerlevel10k
9797
```
9898

deps-arch.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Install pacman packages
44
sudo pacman -Sy && \
55
sudo pacman -S --noconfirm --needed \
6-
exa \
6+
eza \
77
zoxide \
88
bat \
99
neofetch \

deps-ubuntu.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
2020
# Ubuntu 20.10 or later?
2121
if (dpkg --compare-versions "$DISTRIB_RELEASE" "ge" "20.10")
2222
then
23-
sudo apt-get -y install --no-install-recommends exa
23+
sudo apt-get -y install --no-install-recommends eza
2424
else
2525
sudo apt-get -y install --no-install-recommends cargo
26-
cargo install exa
26+
cargo install eza
2727
fi
2828

2929
# Ubuntu 21.04 or later?

0 commit comments

Comments
 (0)