mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
console.lua: add a script-opt for the border size
Because I find the console log easier to read with a thicker border.
This commit is contained in:
parent
4fd0a39fc8
commit
c5211dbf4a
@ -144,6 +144,11 @@ Configurable Options
|
|||||||
Set the font size used for the REPL and the console. This will be
|
Set the font size used for the REPL and the console. This will be
|
||||||
multiplied by "scale".
|
multiplied by "scale".
|
||||||
|
|
||||||
|
``border_size``
|
||||||
|
Default: 1
|
||||||
|
|
||||||
|
Set the font border size used for the REPL and the console.
|
||||||
|
|
||||||
``history_dedup``
|
``history_dedup``
|
||||||
Default: true
|
Default: true
|
||||||
|
|
||||||
|
@ -27,6 +27,7 @@ local opts = {
|
|||||||
-- Set the font size used for the REPL and the console. This will be
|
-- Set the font size used for the REPL and the console. This will be
|
||||||
-- multiplied by "scale".
|
-- multiplied by "scale".
|
||||||
font_size = 16,
|
font_size = 16,
|
||||||
|
border_size = 1,
|
||||||
-- Remove duplicate entries in history as to only keep the latest one.
|
-- Remove duplicate entries in history as to only keep the latest one.
|
||||||
history_dedup = true,
|
history_dedup = true,
|
||||||
}
|
}
|
||||||
@ -144,7 +145,7 @@ function update()
|
|||||||
'\\1a&H00&\\3a&H00&\\4a&H99&' ..
|
'\\1a&H00&\\3a&H00&\\4a&H99&' ..
|
||||||
'\\1c&Heeeeee&\\3c&H111111&\\4c&H000000&' ..
|
'\\1c&Heeeeee&\\3c&H111111&\\4c&H000000&' ..
|
||||||
'\\fn' .. opts.font .. '\\fs' .. opts.font_size ..
|
'\\fn' .. opts.font .. '\\fs' .. opts.font_size ..
|
||||||
'\\bord1\\xshad0\\yshad1\\fsp0\\q1' ..
|
'\\bord' .. opts.border_size .. '\\xshad0\\yshad1\\fsp0\\q1' ..
|
||||||
'\\clip(' .. clipping_coordinates .. ')}'
|
'\\clip(' .. clipping_coordinates .. ')}'
|
||||||
-- Create the cursor glyph as an ASS drawing. ASS will draw the cursor
|
-- Create the cursor glyph as an ASS drawing. ASS will draw the cursor
|
||||||
-- inline with the surrounding text, but it sets the advance to the width
|
-- inline with the surrounding text, but it sets the advance to the width
|
||||||
|
Loading…
Reference in New Issue
Block a user