added install script

Signed-off-by: Wyatt J. Miller <wyatt@wyattjmiller.com>
This commit is contained in:
Wyatt J. Miller 2022-06-12 19:02:44 -05:00
parent 38c232d804
commit 3f5226f04d

17
install.sh Normal file
View File

@ -0,0 +1,17 @@
#!/bin/bash
#
# Script to install my dotfiles to their proper locations
#
# Written by Wyatt J. Miller
if [ -d $HOME/.config ]; then
mkdir .config
done
if [ -d $HOME/.weechat ]; then
mkdir .weechat
done
cp -r ./config/* $HOME/.config/
cp -r ./weechat/ .weechat/
cp ./.tmux.conf $HOME/.tmux.conf