diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-04-14 21:37:38 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-04-14 21:37:38 +0200 |
| commit | 441791e5bc512d915bf8a57fd73635e773a1c150 (patch) | |
| tree | 14819d526794bbd2df816edb6d4aa6b6ca158490 | |
| parent | a2361a7bd2884640f504899dab508e2295355e58 (diff) | |
| download | dotfiles-441791e5bc512d915bf8a57fd73635e773a1c150.tar.gz dotfiles-441791e5bc512d915bf8a57fd73635e773a1c150.zip | |
edit zathura-fzf script: use rofi
| -rwxr-xr-x | bin/zathura-fzf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/zathura-fzf b/bin/zathura-fzf index 2b5ddbd..b9c2724 100755 --- a/bin/zathura-fzf +++ b/bin/zathura-fzf @@ -2,7 +2,7 @@ find "$@" -type f -iname '*pdf' > ~/.pdffiles.txt -alacritty -e sh -c 'cat ~/.pdffiles.txt | fzf > ~/.zathurafile.txt' +cat ~/.pdffiles.txt | rofi -dmenu > ~/.zathurafile.txt selected_file=$(cat ~/.zathurafile.txt) |