From 908ddeba4478b50309a9937fac46d48e8fa48cba Mon Sep 17 00:00:00 2001 From: nedko Date: Fri, 12 Dec 2025 12:17:49 +0200 Subject: [PATCH] Changed default screen size to match TRMNL OG --- config_example.json | 2 +- main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config_example.json b/config_example.json index 5a27adf..52f8ef2 100644 --- a/config_example.json +++ b/config_example.json @@ -1,6 +1,6 @@ { "width": 800, - "height": 600, + "height": 480, "output": "trmnl.png", "font": "font.ttf", "widgets": diff --git a/main.cpp b/main.cpp index 03f4698..4f82b02 100644 --- a/main.cpp +++ b/main.cpp @@ -33,7 +33,7 @@ int main(int argc, char **argv) bool ok; int screen_width = 800; - int screen_height = 600; + int screen_height = 480; string output_filename = "trmnl.png"; string cfg_filename = "config.json"; json cfg;