18 lines
314 B
Bash
18 lines
314 B
Bash
|
#!/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
|