Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
900 B

  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] = "#3a575c", /* during input */
  7. [FAILED] = "#bf616a", /* wrong password */
  8. [CAPS] = "#ebcb8b", /* CapsLock on */
  9. };
  10. /* treat a cleared input like a wrong password (color) */
  11. static const int failonclear = 0;
  12. /* default message */
  13. static const char * message = "\
  14. .-""-.\n\
  15. / .--. \\\n\
  16. / / \\ \\\n\
  17. | | | |\n\
  18. | |.-""-.|\n\
  19. ///`.::::.`\\\n\
  20. ||| ::/ \\:: ;\n\
  21. ||; ::\\__/:: ;\n\
  22. \\\\\\ '::::' /\n\
  23. `=':-..-'`\n\
  24. ";
  25. /* text color */
  26. static const char * text_color = "#ffffff";
  27. /* text size (must be a valid size) */
  28. static const char * font_name = "fixed";