I'm surprised this was never here before. Oh well, gives me an excuse to clean these up and comment them too.
18 lines
428 B
Text
18 lines
428 B
Text
# Mouse wheel volume
|
|
WHEEL_UP add volume 5
|
|
WHEEL_DOWN add volume -5
|
|
|
|
# Arrow keys seek
|
|
RIGHT seek 5
|
|
LEFT seek -5
|
|
UP seek 60
|
|
DOWN seek -60
|
|
|
|
# The three controls I care about :)
|
|
Q quit
|
|
F cycle fullscreen
|
|
S screenshot
|
|
|
|
# If I leave a video on and go to bed, this dims the video feed significantly
|
|
n set brightness -40;set gamma -40;show-text "Night Mode On"
|
|
N set brightness 0;set gamma 0;show-text "Night Mode Off"
|