blob: 9b5dd3be547b078dfd1506ba1cfe8ce86176178f (
plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
|