newsboat: open links in private browser tab
This commit is contained in:
parent
101af580e3
commit
c1ebbfa7ee
|
|
@ -7,7 +7,7 @@ unbind-key H
|
|||
unbind-key L
|
||||
unbind-key c
|
||||
unbind-key ,
|
||||
browser "librewolf %u"
|
||||
browser "librewolf --private-window %u"
|
||||
|
||||
# Feed settings
|
||||
prepopulate-query-feeds yes
|
||||
|
|
|
|||
|
|
@ -50,5 +50,7 @@ colors() {
|
|||
echo
|
||||
}
|
||||
movie() {
|
||||
mpv "$(find ~/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)" | fzf)"
|
||||
filename="$(find ~/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)" -printf "%f\n" | fzf)"
|
||||
filepath="$(find ~/movies/ -type f -regex ".*\.\(mkv\|mp4\|mpeg\|avi\|mov\|webm\)")"
|
||||
mpv "$(grep "$filename" <<< "$filepath")"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue