diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2023-04-20 02:53:57 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2023-04-20 02:53:57 +0300 |
commit | 460f7f9df5b77e7e7b8cff334881e468430d837d (patch) | |
tree | a884df6cacd08279b6b28a404e4112c38d2b7609 /dotfiles | |
parent | 76029e29f72d84cfda69be529c33f621144f3ef9 (diff) | |
download | swayrice-460f7f9df5b77e7e7b8cff334881e468430d837d.tar.gz swayrice-460f7f9df5b77e7e7b8cff334881e468430d837d.zip |
lf: fix fzf_open
Diffstat (limited to 'dotfiles')
-rw-r--r-- | dotfiles/.config/lf/lfrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/.config/lf/lfrc b/dotfiles/.config/lf/lfrc index e9223b8..a8dcb4a 100644 --- a/dotfiles/.config/lf/lfrc +++ b/dotfiles/.config/lf/lfrc @@ -66,7 +66,7 @@ cmd fzf_jump ${{ cmd fzf_open ${{ res="$(find . -type d -path "*/\.*" -prune -o -not -name ".*" -type f | fzf)" if [ -e "$res" ]; then - &xdg-open "$res" + setsid xdg-open "$res" & fi }} |