]> git.wh0rd.org - home.git/blame - .bin/goobuntu-vapier-setup
add dystopia
[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
f01b8ca8
MF
17 feh
18 gimp
87a4c624 19 gkrellm
12021af1 20 mplayer
87a4c624
MF
21 nxclient
22 pidgin
23 pidgin-otr
12021af1 24 vlc
87a4c624
MF
25 wmctrl
26 xchat
27 xrestop
28 yakuake
29
c36703e8
MF
30 autoconf
31 automake
32 dejagnu
d25382c2 33 ccache
87a4c624
MF
34 git
35 gdb
36 keychain
c36703e8 37 libtool
36cfc192 38 nfs-common
d25382c2 39 pax-utils
d5c95d33 40 screen
87a4c624 41 strace
c36703e8 42 texinfo
87a4c624 43 tree
f76b755f
MF
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
87a4c624
MF
54)
55sudo bash -c '
56set -x
d25382c2
MF
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
87a4c624 60
d25382c2
MF
61apt-get -y purge google-chrome-beta
62apt-get -y install google-chrome-unstable
63apt-get -y install "$@"
87a4c624 64
d25382c2 65goobuntu-updater
87a4c624 66
d25382c2 67ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
87a4c624 68for f in .gitconfig .inputrc .nanorc ; do
d25382c2
MF
69 ln -sf ~vapier/${f} ~root/${f}
70done
71rm -f ~root/.profile
87a4c624
MF
72echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
73
d25382c2
MF
74echo -g > /etc/ps1_append
75
87a4c624
MF
76rm -f /cros
77ln -s /usr/local/src/chromiumos/cros-signing /cros
78' bash "${pkgs[@]}"