123456789101112131415161718192021222324252627282930 |
- tab:
- {
- /* tab.position: Position of the tab listing.
- * 0. GTK_POS_LEFT
- * 1. GTK_POS_RIGHT
- * 2. GTK_POS_TOP (default)
- * 3. GTK_POS_BOTTOM
- *
- * See https://developer.gnome.org/gtk3/stable/gtk3-Standard-Enumerations.html#GtkPositionType
- */
- position = 2;
- /* tab.label_charwidth: Amount of characters the tab label text fits into.
- * Note: Only used if tab.box_width is unset.
- */
- tab.label_charwidth = 26;
- /* tab.box_width: Requested width (in pixels) for the whole tab
- * Note: Overrides tab.label_charwidth if set.
- */
- // tab.hexpand: Should the tab try to fill the available horizontal space?
- tab.hexpand = false;
- }
- window: {
- width = 800;
- height = 600;
- }
|