123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- #!/bin/bash
- #
- # Run this script after putting up a new server to get all your preferred
- # software and configurations, assuming that you're kzimmermann
- #
- # -- Environmental considerations: --
- #
- # Server is assumed to be Debian-ish (at least enough to the point of using apt
- # and its repositories)
- #
- # sources.list is assumed to have been configured to download packages from the
- # appropriate repos of your preferences.
- #
- # -- Major changelog: --
- #
- # After many years in trademark debate, Firefox finally makes its way back into
- # Debian Stable :)
- #
- # After experimenting heavily with tiling Window managers, I chose to include
- # awesome in the installed software list.
- #
- # Turns out that plain old `xterm' is, by far, much simpler and better a
- # terminal emulator than urxvt. So much easier to configure, and somehow I
- # don't think we need to read all unicode font ever encountered on the terminal
- #
- # -- License of use: --
- #
- # Copyright Klaus Zimmermann 2017 - all rights reserved.
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- # Sometimes we just want to update the configuration files to the latest
- # version available thanks to `git pull'. If that's the case, answer yes here:
- echo "Do you want only to update the configuration files? (y/n)"
- read decision
- if [[ "$decision" != "y" ]]
- then
- echo "I'm assuming that you already took the time to configure APT, including"
- echo "it's repositories, URLs, distribution, etc."
- echo "Shall we proceed? (y/n)"
- read gonogo
- if [ ${gonogo} != "y" ]; then
- echo "Aborted."
- exit 1
- fi
-
- echo " *** Installation begins ***"
- #echo "Updating repositories..."
- #apt-get update &> /dev/null
- echo "======="
- echo "Installing packages..."
- echo "yes" | sudo apt-get install \
- abiword \
- tor \
- audacious \
- gnumeric \
- vim-gtk \
- feh \
- htop \
- g++ \
- mc \
- mpv \
- mutt \
- identicurse \
- irssi \
- audacious \
- conky \
- sqlite3 \
- sudo \
- tmux \
- keepassx \
- calibre \
- elinks \
- pcmanfm \
- privoxy \
- mcabber \
- viewnior \
- xsel \
- gajim \
- xterm \
- virtualenv \
- openvpn \
- gimp
- # now that the packages are installed, let's put some configuration files
- # where they belong.
- echo "*** Installing dotfiles ***"
-
- else
- echo "*** Updating dotfiles ***"
- fi
- echo "Copying muttrc..."
- cp muttrc $HOME/.muttrc
- echo "Copying tmux configuration files..."
- cp tmux.conf $HOME/.tmux.conf
- echo "Copying bashrc..."
- cp bashrc $HOME/.bashrc
- echo "Copying conkyrc..."
- cp conkyrc $HOME/.conkyrc
- echo "Copying vimrc..."
- cp vimrc $HOME/.vimrc
- echo "Copying elinks configuration files..."
- cp elinks.conf $HOME/.elinks/
- echo "Copying irssi configuration files..."
- cp irssiconfig $HOME/.irssi/config
- echo "Copying Xresources and Xdefaults (for tmux, urxvt)..."
- cp Xresources $HOME/.Xresources
- cp Xdefaults $HOME/.Xdefaults
- echo "Preparing AwsomeWM's dotfiles..."
- mkdir $HOME/.config/awesome
- cp rc.lua $HOME/.config/awesome
- cp theme.lua $HOME/.config/awesome
- echo ""
- echo " *** Installation complete. ***"
|