33 lines
744 B
Bash
33 lines
744 B
Bash
#!/bin/bash
|
|
|
|
dir=~/Dotfiles;
|
|
files=`cat $dir/files`;
|
|
|
|
# Symlink profiles
|
|
for file in $files; do
|
|
echo "Creating symlink for " + $file;
|
|
ln -s $dir/$file ~/.$file;
|
|
done
|
|
|
|
# Generate folders
|
|
mkdir ~/Text;
|
|
mkdir ~/Programming;
|
|
mkdir ~/Projects;
|
|
mkdir ~/Projects/Templates;
|
|
mkdir ~/School;
|
|
|
|
touch ~/Text/notes.org;
|
|
touch ~/Text/todo.org;
|
|
touch ~/Text/calendar.org;
|
|
|
|
# get templates
|
|
declare -a templates=("CTemplate" "CPPTemplate" "PythonTemplate" "NodeTemplate" "ArduinoTemplate");
|
|
for template in ${templates[@]}; do
|
|
git clone https://github.com/Oreodave/$template ~/Projects/Templates/$template;
|
|
done
|
|
|
|
# get doom emacs
|
|
git clone https://github.com/hlissner/doom-emacs ~/.emacs.d
|
|
~/.emacs.d/bin/doom install;
|
|
~/.emacs.d/bin/doom refresh;
|