-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup_machine.sh
executable file
·72 lines (58 loc) · 1.02 KB
/
setup_machine.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/bin/bash
PACKAGE_MANAGER=apt
set -o xtrace
if ! test -f zsh/antigen/Makefile ; then
git submodule init
git submodule update
fi
sudo $PACKAGE_MANAGER upgrade
sudo $PACKAGE_MANAGER install \
curl \
dconf-editor \
htop \
powertop \
gitg \
gnome-tweaks \
gparted \
vim-gtk3 \
iotop \
imagemagick \
inkscape \
meld \
ncdu \
nethogs \
rake \
silversearcher-ag \
tree \
tilda \
tlp \
tlp-rdw \
ubuntu-restricted-extras \
ubuntu-restricted-addons \
unison-gtk \
vim \
xclip \
zsh
if ! grep -q "knub:/bin/zsh" /etc/passwd ; then
chsh -s /bin/zsh
fi
if ! test -L ~/.zshrc ; then
rake install
fi
###
### Post installation steps
###
# * Install Hack font: http://sourcefoundry.org/hack/
###
### Gnome Shell Extensions
###
# * NetSpeed
# *
###
### Set proper scaling factor also on the login screen
###
# * Change to gdm user: sudo -u gdm zsh
# * dbus-launch --exit-with-session gsettings set org.gnome.desktop.interface scaling-factor 1
#ubuntu-restricted-extras
#ubuntu-restricted-addons
#acpi-call-tools \