Description: Log an error message when skincures can't initialize the screen Author: Tobias Grimm --- a/PLUGINS/src/skincurses/skincurses.c.orig 2019-06-17 18:31:59.351079418 +0200 +++ b/PLUGINS/src/skincurses/skincurses.c 2019-06-17 18:35:21.586034302 +0200 @@ -11,6 +11,7 @@ #include #include #include +#include static const char *VERSION = "2.4.1"; static const char *DESCRIPTION = trNOOP("A text only skin"); @@ -841,6 +842,7 @@ ScOsdHeight = maxy - begy + 1; return true; } + esyslog("skincurses: unable to initialize curses screen"); return false; }