Files
dotfiles/update.sh
2024-01-21 14:07:32 -05:00

10 lines
190 B
Bash

#!/bin/bash
CONFIG=$HOME/.config
echo "instruction: ./update.sh <config_folder_name>"
config=$1
cp -r $CONFIG/$config/* ./.config/$config/
echo "Copied $CONFIG/$config to .config folder"