Advertisement
Guest User

config.h

a guest
Sep 4th, 2013
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.11 KB | None | 0 0
  1. /* The height of the bar (in pixels) */
  2. #define BAR_HEIGHT  14
  3. /* The width of the bar. Set to -1 to fit screen */
  4. #define BAR_WIDTH   -1
  5. /* Offset from the left. Set to 0 to have no effect */
  6. #define BAR_OFFSET 0
  7. /* Choose between an underline or an overline */
  8. #define BAR_UNDERLINE 0
  9. /* The thickness of the underline (in pixels). Set to 0 to disable. */
  10. #define BAR_UNDERLINE_HEIGHT 0
  11. /* Default bar position, overwritten by '-b' switch */
  12. #define BAR_BOTTOM 0
  13. /* The fonts used for the bar, comma separated. Only the first 2 will be used. */
  14. #define BAR_FONT       "-*-lime-*-*-*-*-10-*-*-*-*-*-*-*",  "-*-lime-*-*-*-*-10-*-*-*-*-*-*-*"
  15. /*opacity */
  16. #define BAR_OPACITY 1.0
  17. /* Some fonts don't set the right width for some chars, pheex it */
  18. #define BAR_FONT_FALLBACK_WIDTH 6
  19. /* Color palette */
  20. #define COLOR0  0x1c2027
  21. #define COLOR1  0xE6E6E6
  22. #define COLOR2  0x3aaf75
  23. #define COLOR3  0xfadd2d
  24. #define COLOR4  0x2980b9
  25. #define COLOR5  0x8e44ad
  26. #define COLOR6  0x00afff
  27. #define COLOR7  0xb3b3b3
  28. #define COLOR8  0x585858
  29. #define COLOR9  0x1c2027
  30. #define BACKGROUND  0x1c2027
  31. #define FOREGROUND  0xE6E6E6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement