void-packages

Void Source Packages
git clone git://ezup.dev/void-packages.git
Log | Files | Refs | README | LICENSE

config.h (822B)


      1/* user and group to drop privileges to */
      2static const char *user  = "nobody";
      3static const char *group = "nogroup";
      4
      5static const char *colorname[NUMCOLS] = {
      6	[INIT] =   "black",     /* after initialization */
      7	[INPUT] =  "#2E3440",   /* during input */
      8	[FAILED] = "#BF616A",   /* wrong password */
      9	[CAPS] = "red",         /* CapsLock on */
     10};
     11
     12/* treat a cleared input like a wrong password (color) */
     13static const int failonclear = 1;
     14
     15/* time in seconds before the monitor shuts down */
     16static const int monitortime = 180;
     17
     18/* default message */
     19static const char * message = "Suckless: Software that sucks less.";
     20
     21/* text color */
     22static const char * text_color = "#D8DEE9";
     23
     24/* text size (must be a valid size) */
     25static const char * font_name = "-xos4-terminus-medium-r-normal--18-180-72-72-c-100-iso10646-1";