aboutsummaryrefslogtreecommitdiff
path: root/.config/mpv/scripts/full-ao-volume.lua
blob: 591138b36fe6cc86ea6b251d4d7c4f5b28c10a7e (plain)
1
2
3
4
5
6
7
-- make sure AO (pulseaudio/pipewire) output is at 100%
mp.register_event("audio-reconfig", function ()
	if mp.get_property("ao-volume") ~= 100 then
		mp.set_property_number("ao-volume", 100)
	end
end)