Skip to content

Instantly share code, notes, and snippets.

@susemeee
Last active December 26, 2020 12:29
Show Gist options
  • Save susemeee/be07d89012af5fc434faedb4d9b838cc to your computer and use it in GitHub Desktop.
Save susemeee/be07d89012af5fc434faedb4d9b838cc to your computer and use it in GitHub Desktop.
Script to initialize linux server
#!/bin/bash
# because I am too lazy to initialize linux server anymore
export DOTFILES_REPO_URL=https://github.com/susemeee/dotfiles.git
sudo apt update && sudo apt install -y zsh git htop git vim build-essential && git clone $DOTFILES_REPO_URL && cd dotfiles && ./install && cd ~
# tmuxconf
cd ~ && git clone https://github.com/gpakosz/.tmux.git && ln -s -f .tmux/.tmux.conf && cp .tmux/.tmux.conf.local .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment