#include "global.h" static const char wallpaper[] = "/home/suwako/.local/share/wallpapers/8ffe33a4a3459c39bcd0a11a528a3785-"; static const char ext[] = ".jpg"; extern char bgimg[200]; #if MYPC == DESKTOP static const char resolution[] = "1080"; #elif MYPC == X200 static const char resolution[] = "900"; #elif MYPC == T400 static const char resolution[] = "800"; #elif MYPC == X250 || MYPC == S130 static const char resolution[] = "768"; #elif MYPC == T43 static const char resolution[] = "1050"; #elif MYPC == PINEPHONE static const char resolution[] = "1280"; #endif static const char *colorname[NUMCOLS] = { [INIT] = "black", /* after initialization */ [INPUT] = "#005577", /* during input */ [FAILED] = "#CC3333", /* wrong password */ }; /* treat a cleared input like a wrong password (color) */ static const int failonclear = 1;