add installation script

This commit is contained in:
randomuser 2021-05-09 20:32:46 -05:00
parent b9b6e09595
commit 1e8c705afe
1 changed files with 11 additions and 0 deletions

11
install.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
set -x
# check that $XDG_CONFIG_HOME has been assigned
[ -z "$XDG_CONFIG_HOME" ] && XDG_CONFIG_HOME="$HOME/.config"
for i in bspwm nvim sx sxhkd vimb zathura; do
# copy everthing to the config directory
cp -r "$i" $XDG_CONFIG_HOME
done