blob: bcd5d18530e683c7651a070528f4455a113c1275 (
plain)
1
2
3
4
5
6
7
8
9
|
local utils = require "mp.utils"
function notify_current_media(key)
local title = mp.get_property(key)
mp.command_native({"run", "pkill", "-RTMIN+1", "dwmblocks"})
return mp.command_native({"run", "env", "HERBE_ID=/music", "herbe", title})
end
mp.observe_property("media-title", string, notify_current_media)
|