Files
dotfiles/dot_local/bin/executable_xdg-https-handler

9 lines
192 B
Bash

#!/bin/bash
BROWSER=firefox.desktop
if [[ "$1" =~ ^https?://(www\.)?(youtube\.com/(watch|shorts)|youtu\.be/) ]]; then
mpv --no-resume-playback "$1"
else
gtk-launch "$BROWSER" "$1"
fi