2020-05-09 13:43:39 +02:00
|
|
|
#!/bin/bash
|
2020-08-18 08:09:15 +02:00
|
|
|
KERNEL=$(uname -sr)
|
2020-09-18 12:45:42 +02:00
|
|
|
[[ $KERNEL =~ "icrosoft" ]] && nohup streamlink -p "/mnt/c/Program\ Files/VideoLAN/VLC/vlc.exe" $1 best > /dev/null 2>&1 &
|
2020-08-18 08:09:15 +02:00
|
|
|
[[ $KERNEL =~ "gentoo" ]] && nohup streamlink -p mpv $1 best > /dev/null 2>&1 &
|