summaryrefslogtreecommitdiff
path: root/notesplain
blob: 80b057b3dbd0cc294b0e504fbd16f6e4de555ad0 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# Open a markdown note in zathura

dir="$OBSIDIAN_HOME"
file="$(ls -1 "$dir" | sed 's/\.md$//' | dmenu -l 15 -p 'Select note:')"

if [ -n "$file" ]; then
    tmpfile="$(mktemp /tmp/"$file"_XXXXXXXX.pdf)"
    pandoc "$dir/$file.md" -o "$tmpfile" && zathura "$tmpfile" &
fi