nixos-config/scripts/open-notes
2024-12-09 10:21:17 +03:00

15 lines
244 B
Bash
Executable file

#!/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