summaryrefslogtreecommitdiff
path: root/plan
blob: 406a73b312686b1dbdf175b08676457781dce43e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash
#TODO: pandoc --pdf-engine=xelatex jan24.md -o test.pdf

if [ "$1" == next ]; then
    printf "Planning for next week.\n"
fi

if date +%a | grep -q Mon ; then  # today is monday
    date=$(date --date="This Mon" +%b%d | tr A-Z a-z)
    printf "today is monday.\n"
    if [ "$1" == next ]; then
        date=$(date --date="$date + 1 week" +%b%d | tr A-Z a-z)
    fi
else # today is NOT monday
    date=$(date --date="Last Mon" +%b%d | tr A-Z a-z)
    printf "today is NOT monday.\n"
    if [ "$1" == next ]; then
        date=$(date --date="$date + 1 week" +%b%d | tr A-Z a-z)
    fi
fi

filepath="/home/n8/dox/plan/weekly/$date/$date"
directory="/home/n8/dox/plan/weekly/$date/"
template="/home/n8/dox/plan/weekly/template"

openPlan(){
    # Create file if it is not there
    if [ ! -f $filepath.md ]; then
      mkdir -p $directory
      cp $template.md $filepath.md
    fi
    if [[ $(tty) =~ "not a tty" ]]; then
      foot -e nvim $filepath.md
    else
      nvim $filepath.md
    fi
}

if [ -n "$1" ];
then
  if [ "$1" == f ]; then
    if [ -f $filepath.md ];
    then
      markdown $filepath.md > $filepath.html
      firefox $filepath.html
    fi
  fi
fi
openPlan