2016-11-18 16:04:50 +01:00
|
|
|
#! /bin/sh
|
|
|
|
|
#
|
|
|
|
|
# clone_and_link.sh
|
|
|
|
|
# Copyright (C) 2016 fabian <fabian@fabi-laptop-arch>
|
|
|
|
|
#
|
|
|
|
|
# Distributed under terms of the MIT license.
|
|
|
|
|
#
|
|
|
|
|
|
2017-05-24 16:59:32 +02:00
|
|
|
sudo pacman --needed -Sy archlinux-keyring --noconfirm
|
|
|
|
|
sudo pacman --needed -Syu --noconfirm
|
2022-07-05 13:01:06 +02:00
|
|
|
sudo pacman --needed -Sy base-devel xorg xorg-xinit gnome gnome-extra neovim zsh tmux openssh alacritty powerline powerline-fonts python-pip --noconfirm
|
|
|
|
|
pip3 install neovim
|
2016-11-18 16:04:50 +01:00
|
|
|
./clone_and_link.sh
|
|
|
|
|
cp zsh/.powerline_config_arch.example zsh/.powerline_config
|
|
|
|
|
cp vim/.vimrc_config_powerline_arch.example vim/.vimrc_config_powerline
|
2022-07-05 13:01:06 +02:00
|
|
|
./copy_fonts_arch.sh
|
2017-05-24 16:59:32 +02:00
|
|
|
if [ $SHELL != "/bin/zsh" ]; then
|
|
|
|
|
chsh -s /usr/bin/zsh;
|
|
|
|
|
fi
|
2017-05-24 17:31:56 +02:00
|
|
|
|
|
|
|
|
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
|