diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2020-06-16 18:11:09 +0200 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2020-06-16 18:11:09 +0200 |
commit | f22c9e8682df45fb0190e4786142c91bfeea9e21 (patch) | |
tree | bfa779e90652ba748f40d17aea8b9345133acb73 /debian | |
parent | 3f1090257b39088e50fa84e238d73a9a6530d168 (diff) |
created debian scripts folder
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/required | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/debian/required b/debian/required new file mode 100755 index 0000000..9b5dd3b --- /dev/null +++ b/debian/required @@ -0,0 +1,59 @@ +#!/bin/bash + +# display +apt install -y \ + arandr \ + atril \ + feh \ + nitrogen \ + scrot \ + xauth \ + xinit \ + xorg \ + xorg-dev + +# utilities +apt install -y \ + dmenu \ + fish \ + git \ + htop \ + ncdu \ + neovim \ + tree + +# web +apt install -y \ + curl \ + firefox-esr \ + netcat \ + nmap \ + w3m \ + w3m-img + +# security +apt install -y \ + ccrypt \ + pwgen + +# lxc containers +apt install -y \ + bridge-utils \ + dnsmasq-base \ + ebtables \ + iptables \ + libpam-cgfs \ + libvirt0 \ + libvirt-clients \ + libvirt-daemon-system \ + lxc + +# misc +apt install -y \ + acpi \ + build-essential \ + ledger \ + lshw \ + psmisc \ + rcconf \ + sshpass |