Skip to content

Latest commit

 

History

History

pause-indicator-lite

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Pause Indicator Lite

pause-icon play-icon

A simple script that displays an indicator on pause, with options to adjust icon type, color, height, width, opacity and whether to toggle pause with a keybind or not.

I only decided to write this because the ones I found were either too complicated or too simple. The alternatives are great, this one just meets my simple use case scenario.

Script: Pause Indicator Lite

Indicator Options

Below is the full list for indicator options and their default values. To adjust them, simply change their values in local options within the script.

Option Value Description
indicator_icon "pause" indicator icon type. pause, play
indicator_stay true keep indicator visibile during pause
indicator_timeout 0.6 timeout (seconds) if indicator doesn't stay
keybind_allow true allow keybind to toggle pause
keybind_set "mbtn_left" the used keybind to toggle pause [reference]
keybind_mode "onpause" mode to activate keybind.
onpause: only active when paused, to unpause
always: always active to toggle pause/unpause
icon_color "#FFFFFF" icon fill color
icon_border_color "#111111" icon border color
icon_opacity 40 icon opacity (0-100)
rectangles_width 30 width of rectangles (pause icon)
rectangles_height 80 height of rectangles (pause icon)
rectangles_spacing 20 spacing between the two rectangles (pause icon)
triangle_width 80 width of triangle (play icon)
triangle_height 80 height of triangle (play icon)
flash_play_icon true flash play icon on unpause (best with pause indicator icon)
flash_icon_timeout 0.3 timeout (seconds) for flash icon

How to install

Simply place pause_indicator_lite.lua in the corresponding mpv scripts folder of your operating system:

  • Windows: %APPDATA%\mpv\scripts\ or C:\users\USERNAME\AppData\Roaming\mpv\scripts\
  • Linux: ~/.config/mpv/scripts/ or /home/USERNAME/.config/mpv/scripts/
  • Mac: ~/.config/mpv/scripts/ or /Users/USERNAME/.config/mpv/scripts/

Tip

More information about mpv files locations can be found here

config/mpv
│   input.conf
│   mpv.conf
│
└───scripts
        pause_indicator_lite.lua

Notes

  • I don't plan to focus many updates on this script, because ASS drawing and positioning pisses me off. 😝
  • Other alternatives can be found in the mpv user scripts wiki.
  • This isn't exclusive to be used on ModernZ OSC. Feel free to use it with whatever you want.