From 947b5afbc51b43da577ead7ed86c0c21b58fd14f Mon Sep 17 00:00:00 2001 From: "Vuong Hoang (aider)" Date: Thu, 6 Mar 2025 10:07:31 -0800 Subject: [PATCH] add zellij installer and update oh-my-posh themes feat: add zellij installer and update oh-my-posh themes --- lk-installers/install-ohmyposh | 1 - lk-installers/install-zellij | 7 +++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 lk-installers/install-zellij diff --git a/lk-installers/install-ohmyposh b/lk-installers/install-ohmyposh index 0a77be9..fc99f28 100755 --- a/lk-installers/install-ohmyposh +++ b/lk-installers/install-ohmyposh @@ -1,2 +1 @@ curl -s https://ohmyposh.dev/install.sh | bash -s - diff --git a/lk-installers/install-zellij b/lk-installers/install-zellij new file mode 100644 index 0000000..1047423 --- /dev/null +++ b/lk-installers/install-zellij @@ -0,0 +1,7 @@ +#!/bin/bash + +echo "Installing Zellij via cargo..." +cargo install zellij || { + echo "Cargo failed - trying apt instead" + sudo apt update && sudo apt install -y zellij +}