Files
dotfiles/install.sh
oreodave c6f03ed860 +make school dir and a few more text deps
+touch notes and todo in ~/Text
+mkdir school directory
2019-11-04 16:47:48 +00:00

18 lines
277 B
Bash

#!/bin/bash
dir=~/Dotfiles;
files=`cat $dir/files`;
for file in $files; do
echo "Creating symlink for " + $file;
ln -s $dir/$file ~/.$file;
done
# Other folders
mkdir ~/Text;
mkdir ~/School;
touch ~/Text/notes.org;
touch ~/Text/todo.org;
touch ~/Text/calendar.org;