]> git.wh0rd.org Git - home.git/commitdiff
configure more things
authorMike Frysinger <vapier@gentoo.org>
Thu, 6 Sep 2012 17:04:44 +0000 (13:04 -0400)
committerMike Frysinger <vapier@gentoo.org>
Thu, 6 Sep 2012 17:04:44 +0000 (13:04 -0400)
.bin/goobuntu-vapier-setup

index 4344765e1d3184b3bb178852c5f3451c36b63c26..0323ac76cc5c8f81a5ba81cd5418b24d4821f64f 100755 (executable)
@@ -2,6 +2,7 @@
 pkgs=(
        clusterssh
        fetchotp
+       pavucontrol
        pssh
        python-mox
        python-protobuf
@@ -20,31 +21,35 @@ pkgs=(
        xrestop
        yakuake
 
+       ccache
        git
        gdb
        keychain
+       pax-utils
        strace
        tree
 )
 sudo bash -c '
 set -x
-goobuntu-config -U set custom_etc_sudoers_d true;
-printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier;
-chmod 440 /etc/sudoers.d/vapier;
+goobuntu-config -U set custom_etc_sudoers_d true
+printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
+chmod 440 /etc/sudoers.d/vapier
 
-apt-get -y purge google-chrome-beta;
-apt-get -y install google-chrome-unstable;
-apt-get -y install "$@";
+apt-get -y purge google-chrome-beta
+apt-get -y install google-chrome-unstable
+apt-get -y install "$@"
 
-goobuntu-updater;
+goobuntu-updater
 
-ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile;
+ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
 for f in .gitconfig .inputrc .nanorc ; do
-       ln -sf ~vapier/${f} ~root/${f};
-done;
-rm -f ~root/.profile;
+       ln -sf ~vapier/${f} ~root/${f}
+done
+rm -f ~root/.profile
 echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
 
+echo -g > /etc/ps1_append
+
 rm -f /cros
 ln -s /usr/local/src/chromiumos/cros-signing /cros
 ' bash "${pkgs[@]}"