From 3f5226f04d7033c11ef2faa110c8c27fab9563a2 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sun, 12 Jun 2022 19:02:44 -0500 Subject: [PATCH] added install script Signed-off-by: Wyatt J. Miller --- install.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..f487878 --- /dev/null +++ b/install.sh @@ -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