]> git.wh0rd.org - home.git/blame_incremental - .bin/goobuntu-vapier-setup
add dystopia
[home.git] / .bin / goobuntu-vapier-setup
... / ...
CommitLineData
1#!/bin/bash
2pkgs=(
3 clusterssh
4 fetchotp
5 iotop
6 ipython
7 pavucontrol
8 pssh
9 python-mox
10 python-protobuf
11 sharutils
12 unzip
13
14 xfce4
15 kubuntu-desktop
16
17 feh
18 gimp
19 gkrellm
20 mplayer
21 nxclient
22 pidgin
23 pidgin-otr
24 vlc
25 wmctrl
26 xchat
27 xrestop
28 yakuake
29
30 autoconf
31 automake
32 dejagnu
33 ccache
34 git
35 gdb
36 keychain
37 libtool
38 nfs-common
39 pax-utils
40 screen
41 strace
42 texinfo
43 tree
44
45 {g,c}kermit
46 minicom
47 netcat
48 nfs-kernel-server
49 rsh-client
50 telnet-ssl
51 tftp{,d}-hpa
52 wireshark
53 xinetd
54)
55sudo bash -c '
56set -x
57goobuntu-config -U set custom_etc_sudoers_d true
58printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
59chmod 440 /etc/sudoers.d/vapier
60
61apt-get -y purge google-chrome-beta
62apt-get -y install google-chrome-unstable
63apt-get -y install "$@"
64
65goobuntu-updater
66
67ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
68for f in .gitconfig .inputrc .nanorc ; do
69 ln -sf ~vapier/${f} ~root/${f}
70done
71rm -f ~root/.profile
72echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
73
74echo -g > /etc/ps1_append
75
76rm -f /cros
77ln -s /usr/local/src/chromiumos/cros-signing /cros
78' bash "${pkgs[@]}"