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.
21 lines
505 B
21 lines
505 B
#!/bin/env bash |
|
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)" |
|
|
|
# ubuntu |
|
sudo apt update -y |
|
sudo apt install -y zsh eza unzip locales |
|
|
|
source "${SCRIPT_DIR}/ensure-locale.sh" |
|
|
|
cd ~ |
|
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf |
|
./.fzf/install |
|
|
|
mkdir -p ~/.local/share/fonts |
|
cd ~/.local/share/fonts |
|
|
|
fontName=DejaVuSansMono |
|
curl -L -O "https://github.com/ryanoasis/nerd-fonts/releases/download/v3.4.0/${fontName}.zip" |
|
unzip ${fontName}.zip |
|
rm ${fontName}.zip
|
|
|