Config copy, i3 install

This commit is contained in:
Fabian Ising
2017-05-24 17:31:56 +02:00
parent 7eed56c936
commit 1e2951003a
5 changed files with 20 additions and 4 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.swp

View File

@@ -5,6 +5,9 @@
# #
# Distributed under terms of the MIT license. # Distributed under terms of the MIT license.
# #
ln -s $PWD/i3config ~/.config/i3/config mkdir -p $HOME/.config/i3
ln -s $PWD/polybarconfig ~/.config/polybar/config mkdir -p $HOME/.config/polybar
ln -s $PWD/.xinitrc ~/.xinitrc
ln -Ts $PWD/i3config $HOME/.config/i3/config
ln -Ts $PWD/polybarconfig $HOME/.config/polybar/config
ln -Ts $PWD/.xinitrc $HOME/.xinitrc

View File

@@ -9,10 +9,22 @@
sudo pacman --needed -Sy archlinux-keyring --noconfirm sudo pacman --needed -Sy archlinux-keyring --noconfirm
sudo pacman --needed -Syu --noconfirm sudo pacman --needed -Syu --noconfirm
yes | sudo pacman --needed -Sy vte3-ng yes | sudo pacman --needed -Sy vte3-ng
sudo pacman --needed -Sy base-devel xorg xorg-xinit gnome gnome-extra gvim zsh tmux openssh termite powerline powerline-fonts --noconfirm sudo pacman --needed -Sy base-devel xorg xorg-xinit gnome gnome-extra gvim zsh tmux openssh termite powerline powerline-fonts i3 rofi nitrogen --noconfirm
./clone_and_link.sh ./clone_and_link.sh
cp zsh/.powerline_config_arch.example zsh/.powerline_config cp zsh/.powerline_config_arch.example zsh/.powerline_config
cp vim/.vimrc_config_powerline_arch.example vim/.vimrc_config_powerline cp vim/.vimrc_config_powerline_arch.example vim/.vimrc_config_powerline
if [ $SHELL != "/bin/zsh" ]; then if [ $SHELL != "/bin/zsh" ]; then
chsh -s /usr/bin/zsh; chsh -s /usr/bin/zsh;
fi fi
for filename in zsh/.*_arch.example; do
cp $filename ${filename:0:-13}
done
for filename in tmux/.*_arch.example; do
cp $filename ${filename:0:-13}
done
for filename in vim/.*_arch.example; do
cp $filename ${filename:0:-13}
done