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 L
|
||||||
unbind-key c
|
unbind-key c
|
||||||
unbind-key ,
|
unbind-key ,
|
||||||
browser "librewolf %u"
|
browser "librewolf --private-window %u"
|
||||||
|
|
||||||
# Feed settings
|
# Feed settings
|
||||||
prepopulate-query-feeds yes
|
prepopulate-query-feeds yes
|
||||||
|
|
|
||||||
|
|
@ -50,5 +50,7 @@ colors() {
|
||||||
echo
|
echo
|
||||||
}
|
}
|
||||||
movie() {
|
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