http://kseti77xagomoqfzqnphxwhjjlfs2exj6b2fmr3sh6pk23tkcz5dseid.onion/git/mpv-scripts.git/commit/scripts/uosc/lib/menus.lua
. + ---@return MenuStackChild[] menu_items + ---@return number selected_index + ---@return string|nil error + local function serialize_items(path, selected_path) + if path == '{drives}' then + local process = mp.command_native({ + name = 'subprocess', + capture_stdout = true, + playback_only = false, + args = {'wmic', 'logicaldisk', 'get', 'name', '/value'}, + }) + local items, selected_index = {}, 1 + + if process.status == 0 then + for _, value in ipairs(split(process.stdout,...