mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
TOOLS/lua/status-bar: update use of a deprecated property
Also mention that this code does not reflect the status line of current mpv.
This commit is contained in:
parent
289705daaf
commit
446a10020f
@ -1,5 +1,7 @@
|
|||||||
-- Rebuild the terminal status line as a lua script
|
-- Rebuild the terminal status line as a lua script
|
||||||
-- Be aware that this will require more cpu power!
|
-- Be aware that this will require more cpu power!
|
||||||
|
-- Also, this is based on a rather old version of the
|
||||||
|
-- builtin mpv status line.
|
||||||
|
|
||||||
-- Add a string to the status line
|
-- Add a string to the status line
|
||||||
function atsl(s)
|
function atsl(s)
|
||||||
@ -28,7 +30,7 @@ function update_status_line()
|
|||||||
atsl(mp.get_property_osd("time-pos"))
|
atsl(mp.get_property_osd("time-pos"))
|
||||||
|
|
||||||
atsl(" / ");
|
atsl(" / ");
|
||||||
atsl(mp.get_property_osd("length"));
|
atsl(mp.get_property_osd("duration"));
|
||||||
|
|
||||||
atsl(" (")
|
atsl(" (")
|
||||||
atsl(mp.get_property_osd("percent-pos", -1))
|
atsl(mp.get_property_osd("percent-pos", -1))
|
||||||
|
Loading…
Reference in New Issue
Block a user