Advertisement
Guest User

Untitled

a guest
Mar 24th, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.17 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 1
  9. /* The thickness of the underline (in pixels). Set to 0 to disable. */
  10. #define BAR_UNDERLINE_HEIGHT 2
  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 "-artwiz-drift.se-medium-r-*-*-10-*-*-*-*-*-iso8859-1","-*-stlarch-medium-r-normal-*-10-*-*-*-*-*-*-*"
  15. /* Some fonts don't set the right width for some chars, pheex it */
  16. #define BAR_FONT_FALLBACK_WIDTH 6
  17. /* Color palette */
  18. #define COLOR0  0x181512 /* Background */
  19. #define COLOR1  0xbea492 /* Foreground */
  20. #define COLOR2  0x87A2A4 /* Blue */
  21. #define COLOR3  0x8542FF /* Purple */
  22. #define COLOR4  0x9BA67C /* Green */
  23. #define COLOR5  0xe1a35a /* Orange */
  24. #define COLOR6  0xEA8484 /* Red */
  25. #define COLOR7  0x332D29 /* Black'n'Gray I */
  26. #define COLOR8  0x817267 /* Black'n'Gray II */
  27. #define COLOR9  0xE0B786 /* Yellow */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement