]> git.wh0rd.org - home.git/blame - .bin/goobuntu-vapier-setup
tweak bg nc
[home.git] / .bin / goobuntu-vapier-setup
CommitLineData
87a4c624
MF
1#!/bin/bash
2pkgs=(
3 clusterssh
4 fetchotp
f01b8ca8 5 iotop
12021af1 6 ipython
d25382c2 7 pavucontrol
87a4c624
MF
8 pssh
9 python-mox
10 python-protobuf
11 sharutils
12 unzip
13
14 xfce4
15 kubuntu-desktop
16
14031d68 17 elinks
f01b8ca8
MF
18 feh
19 gimp
87a4c624 20 gkrellm
686762d9 21 gtk-redshift
12021af1 22 mplayer
87a4c624
MF
23 nxclient
24 pidgin
25 pidgin-otr
12021af1 26 vlc
87a4c624
MF
27 wmctrl
28 xchat
29 xrestop
30 yakuake
31
c36703e8
MF
32 autoconf
33 automake
2c94c584
MF
34 bison
35 ccache
c36703e8 36 dejagnu
684639b1 37 diffstat
2c94c584 38 flex
87a4c624 39 git
02fe2a67 40 git-svn
87a4c624
MF
41 gdb
42 keychain
c36703e8 43 libtool
36cfc192 44 nfs-common
d25382c2 45 pax-utils
d5c95d33 46 screen
87a4c624 47 strace
02fe2a67 48 subversion
c36703e8 49 texinfo
87a4c624 50 tree
f76b755f
MF
51
52 {g,c}kermit
53 minicom
54 netcat
55 nfs-kernel-server
56 rsh-client
57 telnet-ssl
58 tftp{,d}-hpa
59 wireshark
60 xinetd
2c94c584
MF
61
62 device-tree-compiler
63 libfdt-dev
64 libftdi-dev
65 liblzma-dev
66 libpixman-1-dev
67 libreadline-dev
68 libsdl1.2-dev
69 libusb-1.0-0-dev
70 python-dev
71 zlib1g-dev
87a4c624
MF
72)
73sudo bash -c '
74set -x
d25382c2
MF
75goobuntu-config -U set custom_etc_sudoers_d true
76printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
77chmod 440 /etc/sudoers.d/vapier
87a4c624 78
d25382c2
MF
79apt-get -y purge google-chrome-beta
80apt-get -y install google-chrome-unstable
81apt-get -y install "$@"
87a4c624 82
d25382c2 83goobuntu-updater
87a4c624 84
d25382c2 85ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
87a4c624 86for f in .gitconfig .inputrc .nanorc ; do
d25382c2
MF
87 ln -sf ~vapier/${f} ~root/${f}
88done
89rm -f ~root/.profile
87a4c624
MF
90echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
91
d25382c2
MF
92echo -g > /etc/ps1_append
93
87a4c624
MF
94rm -f /cros
95ln -s /usr/local/src/chromiumos/cros-signing /cros
96' bash "${pkgs[@]}"