Files
dotfiles/lk-installers/install-zellij
Vuong Hoang (aider) 947b5afbc5 add zellij installer and update oh-my-posh themes
feat: add zellij installer and update oh-my-posh themes
2025-03-06 10:24:31 -08:00

8 lines
170 B
Bash

#!/bin/bash
echo "Installing Zellij via cargo..."
cargo install zellij || {
echo "Cargo failed - trying apt instead"
sudo apt update && sudo apt install -y zellij
}