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