mirror of
https://github.com/agresdominik/dotfiles.git
synced 2026-04-21 10:01:58 +00:00
9 lines
184 B
Bash
Executable File
9 lines
184 B
Bash
Executable File
#!/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"
|