summaryrefslogtreecommitdiff
path: root/notesplain
blob: c2637574acf1af9d9c5634d547bb101dfac3d068 (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