dotfiles

My configuration files.
Log | Files | Refs | README

commit 74be739b7a2d3c7affea4fc2b17e51dc4ec1852f
parent d3b38a39241cd567e19b6f8c35e38bd937275036
Author: Sven Möller <sven-moeller@outlook.de>
Date:   Fri, 24 Dec 2021 23:57:42 +0100

Update linkhandler script

Diffstat:
Mbin/.local/bin/lh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/.local/bin/lh b/bin/.local/bin/lh @@ -2,6 +2,6 @@ case $1 in *.png|*.jpg) curl $1 | setsid -f $IMAGE_VIEWER -;; -*youtube.com/watch*) setsid -f mpv $1 > /dev/null 2>&1;; +*.mp3|*.ogg|*youtube.com/watch*) setsid -f mpv --force-window $1 > /dev/null 2>&1;; *) setsid -f $BROWSER $1 ;; esac