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