Advertisement
Y99drasil

bar/config.h

Mar 1st, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.16 KB | None | 0 0
  1. /* The height of the bar (in pixels) */
  2. #define BAR_HEIGHT  16
  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    "-*-stlarch-medium-r-normal-*-10-*-*-*-*-*-*-*","-*-anorexia-*-*-*-*-*-*-*-*-*-*-*-*"
  15. /* Some fonts don't set the right width for some chars, pheex it */
  16. #define BAR_FONT_FALLBACK_WIDTH 4
  17. /* Color palette */
  18. #define COLOR0  0x111111 /* Background */
  19. #define COLOR1  0xc4c4c4 /* Foreground */
  20. #define COLOR2  0x283B5D /* Blue */
  21. #define COLOR3  0x852a52 /* Red */
  22. #define COLOR4  0xadbd00 /* Green */
  23. #define COLOR5  0xec9d08 /* Orange */
  24. #define COLOR6  0x5fd589 /* Magenta */
  25. #define COLOR7  0x111111 /* Black'n'Gray I */
  26. #define COLOR8  0x4E6A6F /* Black'n'Gray II */
  27. #define COLOR9  0xdedede /* White */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement