components_config.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #ifndef _COMPONENTS_CONFIG_H
  2. #define _COMPONENTS_CONFIG_H
  3. /* some settings for components */
  4. /*
  5. * for fmt_human from util.c
  6. *
  7. * NUMFMT_SI: 1000 = 1 K
  8. * NUMFMT_IEC: 1024 = 1 Ki
  9. */
  10. #define FMT_HUMAN_NUMFMT NUMFMT_IEC
  11. /*
  12. * KEYMAP
  13. *
  14. * default: ""
  15. */
  16. /* #define KEYMAP_NUMLOCK " NL" */
  17. /* BATTERY */
  18. #define BATTERY_FULL "" /* "f" */
  19. #define BATTERY_UNKNOWN "" /* "?" */
  20. #define BATTERY_CHARGING "+" /* "+" */
  21. #define BATTERY_DISCHARGING "-" /* "-" */
  22. #define BATTERY_REMAINING_NOT_DISCHARGING "?"
  23. /* BSPWM */
  24. #define BSPWM_FOCUSED_RESET "%{F-}%{B-}"
  25. #define BSPWM_FOCUSED_FG "#0ff"
  26. #define BSPWM_FOCUSED_BG "-"
  27. #define BSPWM_DELIM ' ' /* must be CHAR */
  28. /* define to show vacant tags */
  29. /* #define BSPWM_SHOW_VACANT_TAGS */
  30. /* ENTROPY */
  31. /* Unicode Character 'INFINITY' (U+221E) */
  32. #define ENTROPY_INFINITY "\xe2\x88\x9e" /* will be used only on BSD */
  33. /* VOLUME */
  34. #define VOLUME_SYM "墳 " /* you can specify volume sym there */
  35. #define VOLUME_PERCENT " %" /* percent sign */
  36. #define VOLUME_MUTED "muted" /* string to be displayed if muted */
  37. #define VOLUME_ALSA_CARD "default"
  38. #define VOLUME_ALSA_MIXER_NAME "Master"
  39. #define VOLUME_PULSE_PROC_NAME "volume:pulse" /* PulseAudio thread name */
  40. /* wait so many milliseconds before trying to reconnect to pulse server */
  41. #define VOLUME_PULSE_RECONECT_TIMEOUT 5000
  42. #endif /* _COMPONENTS_CONFIG_H */