]> git.wh0rd.org - home.git/blame - .bin/glinux-vapier-setup
glinux-vapier-setup: add more pkgs
[home.git] / .bin / glinux-vapier-setup
CommitLineData
87a4c624
MF
1#!/bin/bash
2pkgs=(
dc93d0d6 3 cifs-utils
87a4c624 4 clusterssh
f01b8ca8 5 iotop
12021af1 6 ipython
d25382c2 7 pavucontrol
87a4c624 8 pssh
367831fb 9 pylint
87a4c624 10 python-mox
367831fb 11 python-mock
87a4c624
MF
12 python-protobuf
13 sharutils
14 unzip
15
cdabee74
MF
16 goobuntu-remote-unlock
17
87a4c624 18 xfce4
0022ab57
MF
19 xfce4-goodies
20 xfce4-power-manager
87a4c624 21
0022ab57 22 dict
14031d68 23 elinks
f01b8ca8
MF
24 feh
25 gimp
87a4c624 26 gkrellm
686762d9 27 gtk-redshift
dc93d0d6 28 inkscape
12021af1 29 mplayer
0022ab57 30 mpv
12021af1 31 vlc
87a4c624 32 wmctrl
cdabee74 33 hexchat
87a4c624 34 xrestop
2719fe4d
MF
35 advancecomp
36 jpegoptim
cdabee74 37 konsole
c304d23b 38 okular
2719fe4d
MF
39 optipng
40 pngcrush
87a4c624 41 yakuake
cdabee74 42 xscreensaver
87a4c624 43
c36703e8
MF
44 autoconf
45 automake
2c94c584
MF
46 bison
47 ccache
2719fe4d
MF
48 clang
49 clang-format
c36703e8 50 dejagnu
684639b1 51 diffstat
2c94c584 52 flex
2719fe4d 53 gcc
87a4c624 54 git
dc93d0d6 55 git-email
02fe2a67 56 git-svn
87a4c624
MF
57 gdb
58 keychain
c36703e8 59 libtool
36cfc192 60 nfs-common
d25382c2 61 pax-utils
d5c95d33 62 screen
87a4c624 63 strace
02fe2a67 64 subversion
c36703e8 65 texinfo
87a4c624 66 tree
f76b755f
MF
67
68 {g,c}kermit
69 minicom
0022ab57 70 mosh
f76b755f
MF
71 netcat
72 nfs-kernel-server
ed5059f6 73 qemu
f76b755f
MF
74 rsh-client
75 telnet-ssl
76 tftp{,d}-hpa
0022ab57 77 whois
f76b755f
MF
78 wireshark
79 xinetd
2c94c584 80
cdabee74 81 adb
0022ab57
MF
82 # Newer adb packages include fastboot.
83# fastboot
84
85 eterm
86 gnome-terminal
87 mlterm
88 pterm
89 rxvt
90 rxvt-unicode
91 stterm
92 xterm
ed5059f6 93
2c94c584
MF
94 device-tree-compiler
95 libfdt-dev
96 libftdi-dev
97 liblzma-dev
98 libpixman-1-dev
99 libreadline-dev
100 libsdl1.2-dev
101 libusb-1.0-0-dev
dc93d0d6 102 python-beautifulsoup
2c94c584
MF
103 python-dev
104 zlib1g-dev
87a4c624
MF
105)
106sudo bash -c '
0022ab57
MF
107set -ex
108glinux-config -U set custom_etc_sudoers_d true
d25382c2
MF
109printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
110chmod 440 /etc/sudoers.d/vapier
87a4c624 111
367831fb 112apt-get -y purge zeitgeist*
cdabee74 113apt-get -y purge thunderbird evolution
d25382c2
MF
114apt-get -y purge google-chrome-beta
115apt-get -y install google-chrome-unstable
116apt-get -y install "$@"
87a4c624 117
0022ab57
MF
118glinux-updater
119glinux-remote-unlock enroll
87a4c624 120
d25382c2 121ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
87a4c624 122for f in .gitconfig .inputrc .nanorc ; do
d25382c2
MF
123 ln -sf ~vapier/${f} ~root/${f}
124done
125rm -f ~root/.profile
87a4c624
MF
126echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
127
d25382c2
MF
128echo -g > /etc/ps1_append
129
87a4c624 130rm -f /cros
cdabee74 131#ln -s /usr/local/src/chromiumos/cros-signing /cros
87a4c624 132' bash "${pkgs[@]}"