dotfiles/gui/mpv/scripts/organize.lua

52 lines
1.6 KiB
Lua
Raw Normal View History

2020-04-27 06:47:36 +00:00
local utils = require "mp.utils"
function get_path_info()
local work_dir = mp.get_property_native("working-directory")
local file_path = mp.get_property_native("path")
local s = file_path:find(work_dir, 0, true)
local final_path
local final_name
if s and s == 1 then
final_path = file_path
final_name = file_path:sub(work_dir:len() + 2)
else
final_path = utils.join_path(work_dir, file_path)
final_name = file_path
end
return final_path, final_name, work_dir
end
function delete_file()
mp.commandv('playlist-next', 'force')
local path = get_path_info()
if package.config:sub(1,1) == '\\' then
utils.subprocess({ args={'cmd', '/c', 'del', path}, cancellable=false})
else
os.remove(path)
end
2020-04-27 06:47:36 +00:00
end
function move_file(folder)
return function()
mp.commandv('playlist-next', 'force')
local path, name, work_dir = get_path_info()
local dest_dir = utils.join_path(work_dir, folder)
local dest_path = utils.join_path(dest_dir, name)
os.execute('mkdir "' .. dest_dir .. '"')
if package.config:sub(1,1) == '\\' then
utils.subprocess({ args={'cmd', '/c', 'move', path, dest_path}, cancellable=false})
else
os.rename(path, dest_path)
end
2020-04-27 06:47:36 +00:00
end
end
2020-08-05 15:59:25 +00:00
mp.add_key_binding("alt+d", "delete_file", delete_file)
2020-04-27 06:47:36 +00:00
mp.add_key_binding("alt+a", "move_a", move_file('a'))
mp.add_key_binding("alt+b", "move_b", move_file('b'))
2020-08-23 02:53:55 +00:00
mp.add_key_binding("alt+c", "move_c", move_file('c'))
2020-04-27 06:47:36 +00:00
mp.add_key_binding("alt+s", "move_s", move_file('s'))
mp.add_key_binding("alt+w", "move_w", move_file('w'))