Changed default screen size to match TRMNL OG

This commit is contained in:
nedko 2025-12-12 12:17:49 +02:00
parent 82c35a6636
commit 908ddeba44
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"width": 800, "width": 800,
"height": 600, "height": 480,
"output": "trmnl.png", "output": "trmnl.png",
"font": "font.ttf", "font": "font.ttf",
"widgets": "widgets":

View File

@ -33,7 +33,7 @@ int main(int argc, char **argv)
bool ok; bool ok;
int screen_width = 800; int screen_width = 800;
int screen_height = 600; int screen_height = 480;
string output_filename = "trmnl.png"; string output_filename = "trmnl.png";
string cfg_filename = "config.json"; string cfg_filename = "config.json";
json cfg; json cfg;