summaryrefslogtreecommitdiff
path: root/notesplain
blob: 8136cec06e58305a291a0b7b29fd27071c3f39e1 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

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