chore: add linux debian deps install
Some checks failed
CI / Linux (python=3.13 cc=clang sanitize=1) (push) Has been cancelled
CI / Linux (python=3.11 cc=gcc sanitize=0) (push) Has been cancelled
CI / Linux (python=3.12 cc=gcc sanitize=1) (push) Has been cancelled
CI / Linux package (push) Has been cancelled
CI / Bundle test (macos-latest) (push) Has been cancelled
CI / Bundle test (ubuntu-latest) (push) Has been cancelled
CI / macOS Brew (push) Has been cancelled
CI / Test ./dev.sh and benchmark (push) Has been cancelled

This commit is contained in:
ayo 2026-06-22 21:14:45 +02:00
parent f6090b709f
commit b0a4ee8955
2 changed files with 10 additions and 0 deletions

View file

@ -3,13 +3,19 @@
# kitty - the fast, feature-rich, cross-platform, GPU based terminal
## Installation
Copy the following to your terminal:
```bash
git clone https://ayco.io/g/kitty \
&& cd kitty \
&& ./install-if-linux-debian.sh \
&& ./dev.sh build \
&& ./launch.sh
```
## Background
If you live in the terminal, *kitty* is made for **you**!

View file

@ -1,3 +1,5 @@
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
## Update package repos
sudo apt update
@ -22,3 +24,5 @@ sudo apt install -y \
libxkbcommon-x11-dev \
libfontconfig-dev \
libx11-xcb-dev
fi