#!/bin/sh ## Created by Amdac @ www.amdac.net ## This basic script is intended to be hot keyed. It prompts for a URL through rofi and sends the video stream to mpv full screen. ## Works with practically any site and requires rofi and mpv as depedencies. url=$(rofi -dmenu -p "PASTE URL" -lines 0 -width 35 -hide-scrollbar -padding 20 -color-normal "#44484f,#eeeeee,#555555,#2233aa,#eeeeee" -color-window "#223844,#ddeeff,#223844") && $(notify-send 'Buffering Video Stream ..') $(mpv $url --fs 2> /dev/null)