change of vim themes, addition of apt/dpkg package installers

This commit is contained in:
2020-07-13 15:07:32 +01:00
parent 67fb457430
commit 27a00f8e08
5 changed files with 48 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
packages="htop neovim"
aptcommand="sudo apt-get"
if [[ "$EUID" -eq 0 ]]; then
aptcommand="apt-get"
fi
$aptcommand update
$aptcommand install -y $packages