aboutsummaryrefslogtreecommitdiff
path: root/lua/sleep.lua
blob: bba30f218b734ee0883afba70dfb6a012e7fb644 (plain)
1
2
3
4
5
6
7
8
9
10
11
local function set_brightness()
	mp.set_property_number("brightness", -50)
	mp.commandv("seek", "20", "relative")
end

local function init()
	mp.set_property_bool("pause", true)
end

mp.add_key_binding(nil, "test", set_brightness)
init()