22 lines
586 B
Lua
22 lines
586 B
Lua
|
laptop.themes = {
|
||
|
blue = {
|
||
|
launcher_bg = "laptop_theme_blue_launcher_bg.png",
|
||
|
app_bg = "laptop_theme_blue_app_bg.png",
|
||
|
major_button = "laptop_theme_blue_major_button.png",
|
||
|
minor_button = "laptop_theme_blue_minor_button.png",
|
||
|
back_button = "", --TODO
|
||
|
exit_button = "", --TODO
|
||
|
},
|
||
|
red = {
|
||
|
launcher_bg = "laptop_theme_red_launcher_bg.png",
|
||
|
},
|
||
|
freedom = {
|
||
|
launcher_bg = "laptop_theme_freedom_launcher_bg.png",
|
||
|
},
|
||
|
cubic = {
|
||
|
launcher_bg = "laptop_theme_cubic_launcher_bg.png",
|
||
|
},
|
||
|
}
|
||
|
|
||
|
laptop.themes.default = laptop.themes.blue -- default can be an complete theme only
|