qutebrowser: set scale,padding,widths

This commit is contained in:
surtur 2022-08-24 00:21:58 +02:00
parent f8064e2d75
commit f083b725bf
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -371,6 +371,19 @@ c.hints.selectors = {
] ]
} }
# Padding (in pixels) for the statusbar.
# Type: Padding
c.statusbar.padding = {'top': 0, 'right': 0, 'bottom': 0, 'left': 0}
# Scaling factor for favicons in the tab bar. The tab size is unchanged,
# so big favicons also require extra `tabs.padding`.
# Type: Float
c.tabs.favicons.scale = 1
# Padding (in pixels) around text for tabs.
# Type: Padding
c.tabs.padding = {'top': 0, 'right': 0, 'bottom': 0, 'left': 0}
# Position of the tab bar. # Position of the tab bar.
# Type: Position # Type: Position
# Valid values: # Valid values:
@ -392,6 +405,10 @@ c.tabs.width = '25%'
# Type: Int # Type: Int
c.tabs.min_width = -1 c.tabs.min_width = -1
# Width (in pixels) of the progress indicator (0 to disable).
# Type: Int
c.tabs.indicator.width = 1
# Search engines which can be used via the address bar. Maps a search # Search engines which can be used via the address bar. Maps a search
# engine name (such as `DEFAULT`, or `ddg`) to a URL with a `{}` # engine name (such as `DEFAULT`, or `ddg`) to a URL with a `{}`
# placeholder. The placeholder will be replaced by the search term, use # placeholder. The placeholder will be replaced by the search term, use