Merge branch 'main' into themes

This commit is contained in:
ailurux
2024-03-28 16:17:39 +11:00
1805 changed files with 738533 additions and 505 deletions
+6 -6
View File
@@ -8,12 +8,12 @@ local screen = require("screen")
local theme = require("theme")
local img = {
play = "//lua/img/play.png",
pause = "//lua/img/pause.png",
next = "//lua/img/next.png",
prev = "//lua/img/prev.png",
shuffle = "//lua/img/shuffle.png",
repeat_src = "//lua/img/repeat.png", -- repeat is a reserved word
play = lvgl.ImgData("//lua/img/play.png"),
pause = lvgl.ImgData("//lua/img/pause.png"),
next = lvgl.ImgData("//lua/img/next.png"),
prev = lvgl.ImgData("//lua/img/prev.png"),
shuffle = lvgl.ImgData("//lua/img/shuffle.png"),
repeat_src = lvgl.ImgData("//lua/img/repeat.png"), -- repeat is a reserved word
}
local is_now_playing_shown = false