Is it possible to make closing the app window Exit Watch Later?
#551
Answered
by
stax76
parasiteoflife
asked this question in
Q&A
|
I've set the shortkey to Exit Watch Later to EDIT: Here is the script I'm using: msg = require 'mp.msg'
function shutdown()
msg.info('saving watch later...')
mp.command("write-watch-later-config")
end
mp.register_event('shutdown', shutdown) |
Answered by
stax76
Aug 16, 2023
Replies: 1 comment
|
This might be possible with a user script. You can try getting help with the code, asking on reddit. There is a shutdown event. When this event happens, it's possible to execute the input command write-watch-later-config. |
0 replies
Answer selected by
parasiteoflife
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This might be possible with a user script. You can try getting help with the code, asking on reddit.
There is a shutdown event.
When this event happens, it's possible to execute the input command write-watch-later-config.