parent
e21ef89341
commit
08650c1fa5
8 changed files with 220 additions and 155 deletions
@ -0,0 +1,13 @@ |
|||||||
|
# DO NOT edit this file by hand, qutebrowser will overwrite it. |
||||||
|
# Instead, create a config.py - see :help for details. |
||||||
|
|
||||||
|
config_version: 2 |
||||||
|
settings: |
||||||
|
fonts.tabs: |
||||||
|
global: 8pt monospace |
||||||
|
tabs.max_width: |
||||||
|
global: 20 |
||||||
|
tabs.position: |
||||||
|
global: left |
||||||
|
tabs.width: |
||||||
|
global: 7% |
@ -0,0 +1,55 @@ |
|||||||
|
# Autogenerated config.py |
||||||
|
# Documentation: |
||||||
|
# qute://help/configuring.html |
||||||
|
# qute://help/settings.html |
||||||
|
|
||||||
|
# Uncomment this to still load settings configured via autoconfig.yml |
||||||
|
# config.load_autoconfig() |
||||||
|
|
||||||
|
# Enable JavaScript. |
||||||
|
# Type: Bool |
||||||
|
config.set('content.javascript.enabled', True, 'file://*') |
||||||
|
|
||||||
|
# Enable JavaScript. |
||||||
|
# Type: Bool |
||||||
|
config.set('content.javascript.enabled', True, 'chrome://*/*') |
||||||
|
|
||||||
|
# Enable JavaScript. |
||||||
|
# Type: Bool |
||||||
|
config.set('content.javascript.enabled', True, 'qute://*/*') |
||||||
|
|
||||||
|
# ,m opens page with mpv |
||||||
|
config.bind(',m', 'spawn --detach mpv {url}') |
||||||
|
# ,M hints and oens choice with mpv |
||||||
|
config.bind(',M', 'hint links spawn --detach mpv {hint-url}') |
||||||
|
|
||||||
|
# Position of the tab bar. |
||||||
|
# Type: Position |
||||||
|
# Valid values: |
||||||
|
# - top |
||||||
|
# - bottom |
||||||
|
# - left |
||||||
|
# - right |
||||||
|
c.tabs.position = 'left' |
||||||
|
|
||||||
|
# Width (in pixels or as percentage of the window) of the tab bar if |
||||||
|
# it's vertical. |
||||||
|
# Type: PercOrInt |
||||||
|
c.tabs.width = '7%' |
||||||
|
|
||||||
|
# Maximum width (in pixels) of tabs (-1 for no maximum). This setting |
||||||
|
# only applies when tabs are horizontal. This setting does not apply to |
||||||
|
# pinned tabs, unless `tabs.pinned.shrink` is False. This setting may |
||||||
|
# not apply properly if max_width is smaller than the minimum size of |
||||||
|
# tab contents, or smaller than tabs.min_width. |
||||||
|
# Type: Int |
||||||
|
c.tabs.max_width = 20 |
||||||
|
|
||||||
|
# Font used in the tab bar. |
||||||
|
# Type: QtFont |
||||||
|
c.fonts.tabs = '8pt monospace' |
||||||
|
|
||||||
|
c.url.searchengines['goog'] = 'https://google.com/search?q={}' |
||||||
|
c.url.searchengines['aur'] = 'https://aur.archlinux.org/packages/?O=0&K={}' |
||||||
|
c.url.searchengines['aw'] = 'https://wiki.archlinux.org/?search={}' |
||||||
|
|
@ -1 +1 @@ |
|||||||
Subproject commit 319b2b33b86414ec4a3ca18d0b6cf543f5443726 |
Subproject commit 4a1f1fcdd83aa219a431c0a8d7a18ec7a7458cb5 |
Loading…
Reference in new issue