-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·41 lines (29 loc) · 1.02 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/bash
set -x
# Remove vim
sudo apt remove vim -yy
sudo apt update -qq
# Install software
## Tools & General
sudo apt install htop neovim curl fzf ubuntu-restricted-extras virtualbox flatpak universal-ctags ranger gnome-disk-utility -y
sudo apt -o Dpkg::Options::="--force-overwrite" install bat ripgrep -y
ln -s /usr/bin/batcat /usr/local/bin/bat
mkdir ~/Projects
mkdir ~/VMs
## Version-control system
sudo apt install git stow tig -y
## Development
sudo apt install nodejs npm php mariadb-server -y
## Graphics
sudo apt install simplescreenrecorder vlc gimp -y
## Office
sudo apt install libreoffice-writer libreoffice-calc -y
## VPN
sudo apt-get install openvpn resolvconf network-manager-openvpn-gnome unbound -y
sudo chmod +x /etc/resolvconf/update.d/unbound
sudo /etc/init.d/network-manager restart
# Add Flatpak support
sudo apt install gnome-software-plugin-flatpak -yy
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
# Before reboot
sudo apt update -qq && sudo apt upgrade -y