A mirror of phillbush's xmenu.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

35 lines
1.0 KiB

  1. static struct Config config = {
  2. /* font, separate different fonts with comma */
  3. .font = "monospace:size=9,DejaVuSansMono:size=9",
  4. /* colors */
  5. .background_color = "#FFFFFF",
  6. .foreground_color = "#2E3436",
  7. .selbackground_color = "#3584E4",
  8. .selforeground_color = "#FFFFFF",
  9. .separator_color = "#CDC7C2",
  10. .border_color = "#E6E6E6",
  11. /* sizes in pixels */
  12. .width_pixels = 130, /* minimum width of a menu */
  13. .height_pixels = 25, /* height of a single menu item */
  14. .border_pixels = 1, /* menu border */
  15. .separator_pixels = 3, /* space around separator */
  16. .gap_pixels = 0, /* gap between menus */
  17. /*
  18. * The variables below cannot be set by X resources.
  19. * Their values must be less than .height_pixels.
  20. */
  21. /* geometry of the right-pointing isoceles triangle for submenus */
  22. .triangle_width = 3,
  23. .triangle_height = 7,
  24. /* the icon size is equal to .height_pixels - .iconpadding * 2 */
  25. .iconpadding = 2,
  26. /* area around the icon, the triangle and the separator */
  27. .horzpadding = 8,
  28. };