You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
528 B
17 lines
528 B
#!/bin/bash
|
|
|
|
source common.sh
|
|
|
|
sudo $installCMD cmake pkg-config libfreetype6-dev libfontconfig1-dev libxcb-xfixes0-dev libxkbcommon-dev
|
|
git clone https://github.com/alacritty/alacritty.git
|
|
sudo curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
source $HOME/.cargo/env
|
|
cd alacritty/
|
|
cargo build --release -j16
|
|
sudo cp target/release/alacritty /usr/local/bin
|
|
sudo cp extra/logo/alacritty-term.svg /usr/share/pixmaps/Alacritty.svg
|
|
cd ..
|
|
sudo rm -r alacritty/
|
|
|
|
cp -r $main_dir/dotfiles/alacritty /home/$USER/.config/
|