This commit is contained in:
Marco Thomas
2021-03-23 19:25:50 +01:00
parent b90e03fc03
commit 7adc7ce8cd
7 changed files with 62 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
VERBOSE=$1
@@ -14,7 +14,7 @@ mkdir -p $HOME/.emacs.d
ln -sf $path/init.el $HOME/.emacs.d/init.el
# Home directory
home_files=".bashrc .zshrc .gitconfig .tmux.conf .vimrc .Xresources"
home_files=".bashrc .zshrc .gitconfig .tmux.conf .vimrc .Xresources .xinitrc"
for file in $home_files
do
ln -sf $path/$file $HOME/$file
@@ -23,6 +23,10 @@ do
fi
done
# properly add startx files
chmod +x $HOME/.xinitrc
ln -s $HOME/.xinitrc $HOME/.xsession
# .config directory
conf_files="alacritty dunst i3 nvim picom.conf polybar ranger zathura"
for file in $conf_files