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
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:
parent
f6090b709f
commit
b0a4ee8955
2 changed files with 10 additions and 0 deletions
|
|
@ -3,13 +3,19 @@
|
||||||
|
|
||||||
# kitty - the fast, feature-rich, cross-platform, GPU based terminal
|
# kitty - the fast, feature-rich, cross-platform, GPU based terminal
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Copy the following to your terminal:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://ayco.io/g/kitty \
|
git clone https://ayco.io/g/kitty \
|
||||||
&& cd kitty \
|
&& cd kitty \
|
||||||
|
&& ./install-if-linux-debian.sh \
|
||||||
&& ./dev.sh build \
|
&& ./dev.sh build \
|
||||||
&& ./launch.sh
|
&& ./launch.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## Background
|
## Background
|
||||||
|
|
||||||
If you live in the terminal, *kitty* is made for **you**!
|
If you live in the terminal, *kitty* is made for **you**!
|
||||||
|
|
|
||||||
4
install-linux-debian-deps.sh → install-if-linux-debian.sh
Normal file → Executable file
4
install-linux-debian-deps.sh → install-if-linux-debian.sh
Normal file → Executable file
|
|
@ -1,3 +1,5 @@
|
||||||
|
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
|
||||||
|
|
||||||
## Update package repos
|
## Update package repos
|
||||||
sudo apt update
|
sudo apt update
|
||||||
|
|
||||||
|
|
@ -22,3 +24,5 @@ sudo apt install -y \
|
||||||
libxkbcommon-x11-dev \
|
libxkbcommon-x11-dev \
|
||||||
libfontconfig-dev \
|
libfontconfig-dev \
|
||||||
libx11-xcb-dev
|
libx11-xcb-dev
|
||||||
|
|
||||||
|
fi
|
||||||
Loading…
Reference in a new issue