Skip to content

Instantly share code, notes, and snippets.

View abrahamcuenca's full-sized avatar
Converting Coffee to Code

Abraham Cuenca abrahamcuenca

Converting Coffee to Code
View GitHub Profile
@abrahamcuenca
abrahamcuenca / install_zellij.sh
Created January 10, 2025 19:21 — forked from BaksiLi/install_zellij.sh
Install Zellij (latest release) on Linux (incl. Ubuntu) and Darwin
#!/bin/bash
# Get the architecture of the machine
arch=$(uname -m)
os=$(uname -s)
# Download the Zellij binary
if [ "$os" == "Darwin" ]; then
filename="zellij-${arch}-apple-darwin.tar.gz"
url="https://github.com/zellij-org/zellij/releases/latest/download/$filename"