Eza on Fedora 42

In my previous post, I wrote about using Eza on Fedora 41, which works well and it can be installed via dnf. This week, I upgraded my main computer to Fedora 42 and noticed that the Eza package is no longer available and couldn’t be installed using dnf. I looked into the rust-eza and discovered that the maintainer has orphaned it due to time constrains. To keep using Eza, I downloaded the latest release from the project’s Github page, and installed the binary directly to the /usr/local/bin ...

18 April 2025 · 1 min

Replacing ls with eza

Eza is a modern replacement for ls, it’s written in Rust, small, fast and just a single binary. How to replace in Fedora with Fish Shell sudo dnf install eza alias --save ls eza Done!

15 March 2025 · 1 min

Fish shell

After using ZSH for a couple of years, I decided to switch back to the Fish shell. Fish works out of the box, batteries included, and the basic installation provides all the features I expect from a shell environment. For over 20 years, I have been using Unix-based systems, including SCO Unix, Solaris, and BSDi. I have been using Linux since 1996, and Slackware was the first Linux distribution I used, and now I’m a happy Fedora user. My journey led me to discover different shells, csh, ksh, and bash being the most common. ...

29 March 2024 · 2 min

My ZSH Setup

Here’s how I set up ZSH on Fedora Linux. Install the basic packages dnf install zsh zsh-autosuggestions zsh-syntax-highlighting util-linux-user Install Oh My ZSH Follow the instruction on the Oh My ZSH website: sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" Install the Powerlevel10k theme Install the MesloLGS font family first to get the best results. Install the fonts: MesloLGS NF Regular.ttf MesloLGS NF Bold.ttf MesloLGS NF Italic.ttf MesloLGS NF Bold Italic.ttf Clone the repository: git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k Set ZSH_THEME="powerlevel10k/powerlevel10k" in ~/.zshrc Configure the Terminal to load the MesloLGS font: ...

30 July 2023 · 2 min