Skip to content

Instantly share code, notes, and snippets.

@Reelix
Last active September 14, 2025 02:56
Show Gist options
  • Select an option

  • Save Reelix/0f96c5e7145b39a0069259b2bf01902f to your computer and use it in GitHub Desktop.

Select an option

Save Reelix/0f96c5e7145b39a0069259b2bf01902f to your computer and use it in GitHub Desktop.
Reelix's mpv key bindings
# ~/.config/mpv/input.conf
# Left-mouse button for pause / play
MBTN_LEFT cycle pause
# Prevent the right-mouse button from pause / play
MBTN_RIGHT ignore
# Up / Down for volume instead of seek (No Display)
UP add volume +5
DOWN add volume -5
# Better numerical volume control with mouse wheel (+/- 5)
WHEEL_UP add volume 5
WHEEL_DOWN add volume -5
# Hide the osd bar when left / right seeking
RIGHT no-osd seek 5
LEFT no-osd seek -5
# Chapter navigation with side mouse buttons
MBTN_FORWARD add chapter 1
MBTN_BACK add chapter -1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment