From a74b185559cb0d3dea5b0c436ddbfac0a59d937c Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Mon, 26 Aug 2019 23:31:29 -0700 Subject: [PATCH] enable force-window for mpv --- home/streamcrap | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home/streamcrap b/home/streamcrap index 413314d..ac8c322 100644 --- a/home/streamcrap +++ b/home/streamcrap @@ -51,7 +51,10 @@ fi mpv_watch() { pushd ~/play >/dev/null local url="$1"; shift - mpv --af=lavfi="[$_M_PROCESS]" --ytdl-format '[width<=1280],best' \ + mpv \ + --force-window=yes \ + --af=lavfi="[$_M_PROCESS]" \ + --ytdl-format '[width<=1280],best' \ "$@" "$url" popd >/dev/null }