mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
16 lines
604 B
Bash
Executable File
16 lines
604 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%,3%" \
|
|
--no-info --height=100% --scrollbar="" \
|
|
--preview="fuz-preview ~/notes/{}" \
|
|
--preview-window="70%,border-left")
|
|
|
|
[ -n "$selection" ] && nvim ~/notes/"$selection"
|