aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: 0534eaad3e00ba89a41293cffe0c3822b69f9452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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;