Files
dotfiles/add-dotfiles.sh
Antoine Phan ee90d9cc27 More!
2024-01-17 23:33:14 -05:00

12 lines
248 B
Bash

#!/bin/bash
CONFIG=$HOME/.config
echo "instruction: ./add-dotfiles.sh <config_folder_name>"
config=$1
mkdir .config/$config
cp -r $CONFIG/$config ./.config/$config
echo "Copied $CONFIG/$config to .config folder"
echo $config >> listofconfigs.md