1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-04-24 09:03:22 -07:00

enable force-window for mpv

This commit is contained in:
Connor Olding 2019-08-26 23:31:29 -07:00
parent d034bc8a31
commit a74b185559

View File

@ -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
}