-
-
Save brupm/efca1edd37b061b7de26c6577ba64dc5 to your computer and use it in GitHub Desktop.
linux-setup.sh
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
# CLI | |
sudo apt update -y | |
sudo apt install -y \ | |
git curl fzf eza \ | |
docker.io docker-buildx \ | |
build-essential pkg-config autoconf bison rustc cargo clang \ | |
libssl-dev libreadline-dev zlib1g-dev libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev libjemalloc2 \ | |
libvips imagemagick libmagickwand-dev mupdf mupdf-tools \ | |
redis-tools sqlite3 libsqlite3-0 libmysqlclient-dev \ | |
rbenv apache2-utils | |
# UI apps | |
sudo apt install xournalpp nautilus-dropbox alacritty btop | |
sudo snap install 1password spotify vlc zoom-client signal-desktop typora pinta | |
sudo snap install code zellij --classic | |
# Install Gnome Extensions | |
sudo apt install -y gnome-shell-extension-manager | |
echo "Use Extension Manager to install: Tactile, Blur my Shell, Just Perfection" | |
# Install chrome | |
cd ~/Downloads | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
sudo dpkg -i google-chrome-stable_current_amd64.deb | |
cd - | |
# Install Cascadia Nerd Font | |
cd ~/Downloads | |
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.1.1/CascadiaMono.zip | |
unzip CascadiaMono.zip -d CascadiaFont | |
mkdir -p ~/.local/share/fonts | |
cp CascadiaFont/*.ttf ~/.local/share/fonts | |
fc-cache | |
cd - | |
# Configure zellij for Tokyo Night theme | |
mkdir -p ~/.config/zellij | |
cat << EOF >> ~/.config/zellij/config.kdl | |
themes { | |
tokyo-night { | |
fg 169 177 214 | |
bg 26 27 38 | |
black 56 62 90 | |
red 249 51 87 | |
green 158 206 106 | |
yellow 224 175 104 | |
blue 122 162 247 | |
magenta 187 154 247 | |
cyan 42 195 222 | |
white 192 202 245 | |
orange 255 158 100 | |
} | |
} | |
theme "tokyo-night" | |
default_layout "compact" | |
EOF | |
# Configure alacritty for Tokyo Night theme | |
mkdir -p ~/.config/alacritty | |
cat << EOF >> ~/.config/alacritty/alacritty.toml | |
[env] | |
TERM = "xterm-256color" | |
[window] | |
padding.x = 16 | |
padding.y = 14 | |
decorations = "none" | |
[font] | |
normal = { family = "CaskaydiaMono Nerd Font", style = "Regular" } | |
size = 9 | |
[keyboard] | |
bindings = [ | |
{ key = "F11", action = "ToggleFullscreen" } | |
] | |
[colors] | |
[colors.primary] | |
background = '#1a1b26' | |
foreground = '#a9b1d6' | |
# Normal colors | |
[colors.normal] | |
black = '#32344a' | |
red = '#f7768e' | |
green = '#9ece6a' | |
yellow = '#e0af68' | |
blue = '#7aa2f7' | |
magenta = '#ad8ee6' | |
cyan = '#449dab' | |
white = '#787c99' | |
# Bright colors | |
[colors.bright] | |
black = '#444b6a' | |
red = '#ff7a93' | |
green = '#b9f27c' | |
yellow = '#ff9e64' | |
blue = '#7da6ff' | |
magenta = '#bb9af7' | |
cyan = '#0db9d7' | |
white = '#acb0d0' | |
[colors.selection] | |
background = '#7aa2f7' | |
EOF | |
# Install ulauncher | |
sudo add-apt-repository universe -y | |
sudo add-apt-repository ppa:agornostal/ulauncher -y | |
sudo apt update | |
sudo apt install ulauncher | |
# Install neovim w/ lazyvim | |
sudo add-apt-repository ppa:neovim-ppa/stable | |
sudo apt update -y | |
sudo apt install -y ripgrep neovim | |
git clone https://github.com/LazyVim/starter ~/.config/nvim | |
echo "alias n='nvim'" >> ~/.bashrc | |
# Install lazygit | |
cd ~/Downloads | |
LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep -Po '"tag_name": "v\K[^"]*') | |
curl -Lo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz" | |
tar xf lazygit.tar.gz lazygit | |
sudo install lazygit /usr/local/bin | |
cd - | |
# Install iA Writer theme for Typora | |
cd ~/Downloads | |
git clone https://github.com/dhh/ia_typora | |
mkdir -p ~/.local/share/fonts | |
cp ia_typora/fonts/iAWriterMonoS-* ~/.local/share/fonts/ | |
fc-cache | |
mkdir -p ~/snap/typora/88/.config/Typora/themes/ | |
cp ia_typora/ia_typora*.css ~/snap/typora/88/.config/Typora/themes/ | |
cd - | |
# Ruby | |
echo 'eval "$(/usr/bin/rbenv init - bash)"' >> ~/.bashrc | |
source ~/.bashrc | |
git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build | |
rbenv install 3.3.1 | |
rbenv global 3.3.1 | |
# Binstubs | |
cat << EOF >> ~/.bashrc | |
export PATH="./bin:$PATH" | |
set +h | |
alias r='./bin/rails' | |
EOF | |
# Setup git aliases | |
git config --global alias.co checkout | |
git config --global alias.br branch | |
git config --global alias.ci commit | |
git config --global alias.st status | |
git config --global pull.rebase true | |
cat << EOF >> ~/.bashrc | |
alias g='git' | |
alias gcm='git commit -m' | |
alias gcam='git commit -a -m' | |
alias gcad='git commit -a --amend' | |
EOF | |
source ~/.bashrc | |
# Setup bash | |
cat << EOF >> ~/.bashrc | |
alias ls='eza -lh --group-directories-first --icons' | |
EOF | |
source ~/.bashrc | |
# Setup GitHub CLI | |
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg \ | |
&& sudo chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg \ | |
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null \ | |
&& sudo apt update \ | |
&& sudo apt install gh -y | |
gh auth login | |
# Setup Docker | |
echo "Add user to docker group (needs restart to become effective)" | |
sudo usermod -aG docker ${USER} | |
echo "alias d='docker'" >> ~/.bashrc | |
source ~/.bashrc | |
DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker} | |
mkdir -p $DOCKER_CONFIG/cli-plugins | |
curl -SL https://github.com/docker/compose/releases/download/v2.27.0/docker-compose-linux-x86_64 -o $DOCKER_CONFIG/cli-plugins/docker-compose | |
chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose | |
docker run -d --restart unless-stopped -p 3306:3306 --name=mysql8 -e MYSQL_ROOT_PASSWORD= -e MYSQL_ALLOW_EMPTY_PASSWORD=true mysql:8 | |
docker run -d --restart unless-stopped -p 6379:6379 --name=redis redis | |
# Setup nodenv | |
git clone https://github.com/nodenv/nodenv.git ~/.nodenv | |
sudo ln -vs ~/.nodenv/bin/nodenv /usr/local/bin/nodenv | |
cd ~/.nodenv | |
src/configure && make -C src || true | |
cd ~/ | |
mkdir -p "$(nodenv root)"/plugins | |
git clone https://github.com/nodenv/node-build.git "$(nodenv root)"/plugins/node-build | |
git clone https://github.com/nodenv/nodenv-aliases.git $(nodenv root)/plugins/nodenv-aliases | |
nodenv install 20.11.1 | |
nodenv global 20.11.1 | |
sudo ln -vs $(nodenv root)/shims/* /usr/local/bin/ | |
echo 'eval "$(nodenv init -)"' >> ~/.bashrc | |
source ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment