Bunch of changes, fuzzy document finder

This commit is contained in:
2026-03-11 11:42:24 +01:00
parent 7dfa279413
commit b768d53ab8
7 changed files with 43 additions and 7 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/sh
file=$(
cd "$HOME/documents" || exit 1
fd --type f . | rofi -dmenu -i -p "documents"
) || exit 0
[ -n "$file" ] || exit 0
exec alacritty -e nvim "$HOME/documents/$file"