This file contains 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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDGk1DNviQ776WrvvOFnv9RdhVBAxAh8vhQCK4iuQePLgfFPPxI1FSwlNOmwXR5OALy8h8on6ven9vrPa967h45xEmL1+IGEWhx/fxs4rzp/4xg3Inlf0vMSdducAizg456/wVEegTTGvNYs/8UO69W7XPS4+7UTGG+arUwayGUmY/RoCnoh6Gx8weoj3wuwUJbG/bp/xAx9OUC1GGIiSwDV2UqnnJpXM7ptt2TlXhdnejwFxqXxqnVeEOvqYiTa+DaYK5VOyxmg8xKvWjRKcsFLTl2cVYM851WA5V3A/NZ/PqAygRP+4mKoU4j0Aqk8fy6eNc665N5d7ZcEVW2EZtR aaron@LAPTOP-K9OKQK54 |
This file contains 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/bash | |
# This installs alacritty terminal on ubuntu (https://github.com/jwilm/alacritty) | |
# You have to have rust/cargo installed for this to work | |
# Install required tools | |
sudo apt-get install -y cmake libfreetype6-dev libfontconfig1-dev xclip | |
# Download, compile and install Alacritty | |
git clone https://github.com/jwilm/alacritty |