We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9422a6d commit cf393b1Copy full SHA for cf393b1
player/lua/osc.lua
@@ -146,6 +146,7 @@ local icons = {
146
next = "\238\132\129", -- E101
147
pause = "\238\128\130", -- E002
148
play = "\238\132\129", -- E101
149
+ clock = "\238\128\134", -- E006
150
play_backward = "\238\132\144", -- E110
151
skip_backward = "\238\128\132", -- E004
152
skip_forward = "\238\128\133", -- E005
@@ -1906,6 +1907,10 @@ local function osc_init()
1906
1907
ne = new_element("play_pause", "button")
1908
1909
ne.content = function ()
1910
+ if mp.get_property_bool("paused-for-cache") ~= false then
1911
+ return icons.clock
1912
+ end
1913
+
1914
if not mp.get_property_native("pause") then
1915
return icons.pause
1916
end
0 commit comments