Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Discussion options

You must be logged in to vote

I'm assuming you are using the mpv key bindings?

Follow these instructions:

  • Run these commands in Terminal to create the Lua script:
mkdir -p  ~/.config/mpv/scripts/
cat >> ~/.config/mpv/scripts/toggle-console.lua << 'EOF'
local open = false

mp.add_key_binding(nil, 'toggle-console', function ()
    mp.commandv('script-message-to', 'console', open and 'disable' or 'enable')
    open = not open
end)
EOF
  • Start IINA
  • Click on Settings… under the IINA menu
  • The settings panel appears
  • On the left side of the panel click on Advanced
  • Slide the Enable advanced settings toggle button to be on (blue)
  • Enable Use config directory at the bottom of the panel
  • Confirm the settings panel looks like the …

Replies: 1 comment 9 replies

Comment options

You must be logged in to vote
9 replies
@m-spitfire
Comment options

@low-batt
Comment options

@low-batt
Comment options

@m-spitfire
Comment options

@low-batt
Comment options

Answer selected by m-spitfire
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants