dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 86032cc79804fd516655992b611f6a721a0085e5
parent e2d8ced1f0537aa76f4073e971d56f6c41588dbc
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Wed, 16 Mar 2022 13:52:58 +0100

linkhandler: handle facebook videos

Diffstat:
Mscripts/linkhandler | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/linkhandler b/scripts/linkhandler @@ -1,7 +1,7 @@ #!/bin/sh # Linkhandler: handles links. Like `opener` but for URLs case "$1" in - *mkv|*webm|*mp4|*youtube.com/watch*|*youtube.com/playlist*|*youtu.be*|*hooktube.com*|*bitchute.com*|*videos.lukesmith.xyz*|*v.redd.it*) + *mkv|*webm|*mp4|*youtube.com/watch*|*youtube.com/playlist*|*youtu.be*|*hooktube.com*|*bitchute.com*|*videos.lukesmith.xyz*|*v.redd.it*|*fb.watch*) notify 'Starting mpv' "Opening $1..." 'linkhandler' setsid -f mpvq "$1" 1>/dev/null 2>&1 ;;