blob: 840dea6fc0c1736d71cc7d2bd91ea2d02e22b3a4 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env sh
note_list=$(zk list -f "{{ title }}" -d $'\n' -q)
selected=$(printf "%s\n" "$note_list" | rofi -dmenu -i -p " ")
if [[ -n $selected ]]; then
foot -a=floating_foot -e sh -c "zk edit --match \"${selected}\""
fi
|