config.def.h 527 B

12345678910111213141516
  1. /* user and group to drop privileges to */
  2. static const char *user = "nobody";
  3. static const char *group = "nobody";
  4. static const char *colorname[NUMCOLS] = {
  5. [INIT] = "black", /* after initialization */
  6. [INPUT] = "#005577", /* during input */
  7. [FAILED] = "#CC3333", /* wrong password */
  8. };
  9. /* treat a cleared input like a wrong password (color) */
  10. static const int failonclear = 1;
  11. /* Background image path, should be available to the user above */
  12. static const char* background_image = "~/Imagens/slock.png";