mirror of
https://github.com/ksyasuda/mpv-youtube-queue.git
synced 2024-10-28 04:44:11 -07:00
update styling
This commit is contained in:
parent
dfdbe42b33
commit
cc4f11cb1c
@ -54,14 +54,16 @@ local colors = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
local style = {
|
local style = {
|
||||||
error = "{\\c&" .. colors.error .. "&}",
|
error = "{\\c&" .. colors.error .. "&\\alpha&H00&}",
|
||||||
selected = "{\\c&" .. colors.selected .. "&}",
|
selected = "{\\c&" .. colors.selected .. "&\\alpha&H40&}",
|
||||||
hover_selected = "{\\c&" .. colors.hover_selected .. "&}",
|
hover_selected = "{\\c&" .. colors.hover_selected .. "&\\alpha&H20&}",
|
||||||
cursor = "{\\c&" .. colors.cursor .. "&}",
|
cursor = "{\\c&" .. colors.cursor .. "&}",
|
||||||
reset = "{\\c&" .. colors.text .. "&}",
|
reset = "{\\c&" .. colors.text .. "&}",
|
||||||
header = "{\\c&" .. colors.header .. "&}",
|
header = "{\\c&" .. colors.header .. "}",
|
||||||
hover = "{\\c&" .. colors.hover .. "&}",
|
hover = "{\\c&" .. colors.hover .. "&}",
|
||||||
font = "{\\fn" .. options.font_name .. "\\fs" .. options.font_size .. "}"
|
font = "{\\fn" .. options.font_name .. "\\fs" .. options.font_size ..
|
||||||
|
"\\alpha&H80&}",
|
||||||
|
notransparency = "{\\alpha&H00&}"
|
||||||
}
|
}
|
||||||
|
|
||||||
mp.options.read_options(options, "mpv-youtube-queue")
|
mp.options.read_options(options, "mpv-youtube-queue")
|
||||||
@ -215,12 +217,12 @@ function YouTubeQueue.print_queue(duration)
|
|||||||
|
|
||||||
local message =
|
local message =
|
||||||
styleOn .. style.header .. "{\\fn" .. options.font_name .. "\\fs" ..
|
styleOn .. style.header .. "{\\fn" .. options.font_name .. "\\fs" ..
|
||||||
options.font_size * 2 .. "}" .. "MPV-YOUTUBE-QUEUE" ..
|
options.font_size * 1.5 .. "\\b1}" .. "MPV-YOUTUBE-QUEUE{\\b0}" ..
|
||||||
style.reset .. style.font .. "\n"
|
style.reset .. style.font .. "\n"
|
||||||
for i = start_index, end_index do
|
for i = start_index, end_index do
|
||||||
local prefix = (i == selected_index) and style.cursor ..
|
local prefix = (i == selected_index) and style.cursor ..
|
||||||
options.cursor_icon .. " " .. style.reset or
|
style.notransparency .. options.cursor_icon ..
|
||||||
" "
|
" " .. style.reset or " "
|
||||||
if i == current_index and i == selected_index then
|
if i == current_index and i == selected_index then
|
||||||
message =
|
message =
|
||||||
message .. prefix .. style.hover_selected .. i .. ". " ..
|
message .. prefix .. style.hover_selected .. i .. ". " ..
|
||||||
@ -333,13 +335,13 @@ local function add_to_queue()
|
|||||||
-- return
|
-- return
|
||||||
end
|
end
|
||||||
local name = get_video_name(url)
|
local name = get_video_name(url)
|
||||||
if not name then
|
if not name or name == "" then
|
||||||
print_osd_message("Error getting video name.", MSG_DURATION,
|
print_osd_message("Error getting video name.", MSG_DURATION,
|
||||||
colors.error)
|
colors.error)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
local channel_url = get_channel_url(url)
|
local channel_url = get_channel_url(url)
|
||||||
if not channel_url then
|
if not channel_url or channel_url == "" then
|
||||||
print_osd_message("Error getting channel URL.", MSG_DURATION,
|
print_osd_message("Error getting channel URL.", MSG_DURATION,
|
||||||
colors.error)
|
colors.error)
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user