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