dotfiles/.local/bin/spnotes
2024-07-05 07:01:24 +05:00

16 lines
600 B
Bash
Executable File

#!/usr/bin/env sh
# Command for notes scratchpad used in dwm
selection=$(fd --color=always \
--base-directory ~/notes \
-e md -e txt -e qalc \
| fzf \
--ansi \
--prompt="Notes  " \
--margin="10%,5%" \
--no-info --height=100% --scrollbar="" \
--preview="glow ~/notes/{}" \
--preview-window="border-left")
[ -n "$selection" ] && nvim ~/notes/"$selection"