Created
May 14, 2018 04:49
-
-
Save reed-jones/b7ea9ce2c79d3809494f78affc1d58d3 to your computer and use it in GitHub Desktop.
Kitty Terminal Build Script for a fresh Ubuntu 18.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# installs requirements and builds kitty from source | |
# on a fresh Ubuntu 18.04 install | |
# | |
# https://github.com/kovidgoyal/kitty | |
sudo apt install python3-dev git gcc build-essential pkg-config libharfbuzz-dev libpng-dev libfontconfig1-dev libgl1-mesa-dev libxkbcommon-x11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev | |
cd /opt | |
sudo git clone https://github.com/kovidgoyal/kitty | |
cd /opt/kitty | |
sudo make | |
python3 . |
on xubuntu 18.04 sudo apt install libdbus-1-dev libcanberra-dev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for those not on standard gnome desktop, this also needs
sudo apt install libdbus1-dev