badwolf.cfg 684 B

123456789101112131415161718192021222324252627282930
  1. tab:
  2. {
  3. /* tab.position: Position of the tab listing.
  4. * 0. GTK_POS_LEFT
  5. * 1. GTK_POS_RIGHT
  6. * 2. GTK_POS_TOP (default)
  7. * 3. GTK_POS_BOTTOM
  8. *
  9. * See https://developer.gnome.org/gtk3/stable/gtk3-Standard-Enumerations.html#GtkPositionType
  10. */
  11. position = 2;
  12. /* tab.label_charwidth: Amount of characters the tab label text fits into.
  13. * Note: Only used if tab.box_width is unset.
  14. */
  15. tab.label_charwidth = 26;
  16. /* tab.box_width: Requested width (in pixels) for the whole tab
  17. * Note: Overrides tab.label_charwidth if set.
  18. */
  19. // tab.hexpand: Should the tab try to fill the available horizontal space?
  20. tab.hexpand = false;
  21. }
  22. window: {
  23. width = 800;
  24. height = 600;
  25. }