-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.conf
More file actions
52 lines (47 loc) · 2.84 KB
/
Copy pathinput.conf
File metadata and controls
52 lines (47 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Liquid Glass skin: override default mouse wheel behavior.
# Route scroll to our Lua handler so it can show the centered seek OSD.
WHEEL_UP script-message-to uosc lg-scroll-up
WHEEL_DOWN script-message-to uosc lg-scroll-down
# ── Seek / video progress ──────────────────────────────────────────────
# Arrow keys + gamer keys (A/D). Routed through Lua so the centered
# seek OSD (camera icon + %) shows, just like the scroll wheel.
# `repeatable` so holding the key keeps seeking.
LEFT repeatable script-message-to uosc lg-seek "-5"
RIGHT repeatable script-message-to uosc lg-seek "5"
a repeatable script-message-to uosc lg-seek "-5"
d repeatable script-message-to uosc lg-seek "5"
# ── Volume ─────────────────────────────────────────────────────────────
# Arrow keys + gamer keys (W/S). Shows the centered volume OSD.
# `repeatable` so holding the key keeps changing volume.
UP repeatable script-message-to uosc lg-volume "5"
DOWN repeatable script-message-to uosc lg-volume "-5"
w repeatable script-message-to uosc lg-volume "5"
s repeatable script-message-to uosc lg-volume "-5"
# ── Right-click: toggle pause ──────────────────────────────────────────
# The centered play/pause OSD is driven by the `pause` property observer in
# Controls.lua, so it shows for ANY pause toggle (right-click, space, …).
MBTN_RIGHT cycle pause
# ── Number keys: jump to a percentage of the video (scales with duration) ─
# 0 = start, 1 = 10%, 2 = 20% … 9 = 90%. Shows the centered seek OSD.
# Bound for BOTH the top-row numbers and the numpad (KP0-KP9), so the
# numpad seeks instead of its default video-size behavior.
0 script-message-to uosc lg-seek-percent 0
1 script-message-to uosc lg-seek-percent 10
2 script-message-to uosc lg-seek-percent 20
3 script-message-to uosc lg-seek-percent 30
4 script-message-to uosc lg-seek-percent 40
5 script-message-to uosc lg-seek-percent 50
6 script-message-to uosc lg-seek-percent 60
7 script-message-to uosc lg-seek-percent 70
8 script-message-to uosc lg-seek-percent 80
9 script-message-to uosc lg-seek-percent 90
KP0 script-message-to uosc lg-seek-percent 0
KP1 script-message-to uosc lg-seek-percent 10
KP2 script-message-to uosc lg-seek-percent 20
KP3 script-message-to uosc lg-seek-percent 30
KP4 script-message-to uosc lg-seek-percent 40
KP5 script-message-to uosc lg-seek-percent 50
KP6 script-message-to uosc lg-seek-percent 60
KP7 script-message-to uosc lg-seek-percent 70
KP8 script-message-to uosc lg-seek-percent 80
KP9 script-message-to uosc lg-seek-percent 90