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.

25 lines
926 B

  1. --- config.def.h
  2. +++ config.def.h
  3. @@ -6,6 +6,8 @@ static int topbar = 1; /* -b option; if 0, dmenu appears a
  4. static const char *fonts[] = {
  5. "monospace:size=10"
  6. };
  7. +static const unsigned int bgalpha = 0xe0;
  8. +static const unsigned int fgalpha = OPAQUE;
  9. static const char *prompt = NULL; /* -p option; prompt to the left of input field */
  10. static const char *colors[SchemeLast][2] = {
  11. /* fg bg */
  12. @@ -13,6 +15,13 @@ static const char *colors[SchemeLast][2] = {
  13. [SchemeSel] = { "#eeeeee", "#005577" },
  14. [SchemeOut] = { "#000000", "#00ffff" },
  15. };
  16. +static const unsigned int alphas[SchemeLast][2] = {
  17. + /* fgalpha bgalphga */
  18. + [SchemeNorm] = { fgalpha, bgalpha },
  19. + [SchemeSel] = { fgalpha, bgalpha },
  20. + [SchemeOut] = { fgalpha, bgalpha },
  21. +};
  22. +
  23. /* -l option; if nonzero, dmenu uses vertical list with given number of lines */
  24. static unsigned int lines = 0;