Added dependencie list

This commit is contained in:
id101010
2016-10-17 17:39:53 +02:00
parent 29a8fc3597
commit 288a8e1fec
2 changed files with 35 additions and 3 deletions

View File

@@ -7,6 +7,21 @@ Personal Linux configuration files for
- urxvt
- zsh
# Dependencies
You'll need the following software for a fully functional setup.
- i3-wm
- i3status
- i3lock
- dmenu
- zsh
- vim
- rxvt-unicode
- tmux
- feh
- volnoti (AUR, GitHub)
- jauth-git (AUR, GitHub)
# Screenshots

View File

@@ -11,10 +11,28 @@
# |_| |_| #
#############################################################
#
# ./setup.sh - download repository to $HOME/.dotfiles and symlink everythin ing place
# ./setup.sh clean - backup all files in $BAKFILES to .dotfilebackup
#
# The dependencies for this script are (arch linux repo names):
# - i3-wm
# - i3status
# - i3lock
# - dmenu
# - zsh
# - vim
# - rxvt-unicode
# - tmux
# - feh
# - volnoti (AUR, GitHub)
# - jauth-git (AUR, GitHub)
# Files and folders
DOTFILES="$HOME/.dotfiles"
BAKFILES=".zshrc
BAKFILES=".i3
.zshrc
.tmux.conf
.vimrc
.Xdefaults"
@@ -33,8 +51,7 @@ if [ "$1" == "clean" ]; then
# Backup each config file specified by $BAKFILES
for file in $BAKFILES
do
cp -v $HOME/$file $BAKFOLD/$file
rm -rf $HOME/$file
mv -v $HOME/$file $BAKFOLD/$file
done
exit