nixos-config/scripts/open-notes

16 lines
244 B
Text
Raw Permalink Normal View History

2024-12-09 07:21:17 +00:00
#!/usr/bin/env bash
pushd ~/Nextcloud/Notes/ > /dev/null
if [[ $# -eq 1 ]]; then
selected=$1
else
selected=$(rg . --files --glob "*.md" | sort -r -f | fzf)
fi
if [[ -z $selected ]]; then
exit 0
fi
nvim "$selected"
popd > /dev/null