# SAMPLE config.py # To find the directory in which this file should be placed, # in Qutebrowser run the :version command, look at the # "Paths" section, and observe the config path. ##################### BEGIN PER-DOMAIN SETTINGS ############ config.set("content.geolocation", True, "https://www.amctheatres.com") config.set("content.media.audio_capture", True, "https://meet.jit.si") config.set("content.media.audio_video_capture", True, "https://meet.jit.si") config.set("content.media.video_capture", True, "https://meet.jit.si") ##################### END PER-DOMAIN SETTINGS ############ ##################### BEGIN GENERAL SETTINGS ############ c.colors.completion.scrollbar.fg = "yellow" c.colors.tabs.even.bg = "rgb(0,0,224)" c.colors.tabs.even.fg = "lightyellow" c.colors.tabs.odd.bg = "black" c.colors.tabs.selected.even.bg = "yellow" c.colors.tabs.selected.even.fg = "darkblue" c.colors.tabs.selected.odd.bg = "yellow" c.colors.tabs.selected.odd.fg = "darkblue" c.colors.webpage.preferred_color_scheme = "light" c.completion.scrollbar.padding = 0 c.completion.scrollbar.width = 100 c.fonts.hints = "bold 15px Tex Gyre Heros" c.fonts.statusbar = "14pt Tex Gyre Heros" c.fonts.tabs.selected = "14pt Tex Gyre Heros" c.fonts.tabs.unselected = "14pt Tex Gyre Heros" c.scrolling.bar = "always" c.url.default_page = "http://littlinks.cxm" c.url.start_pages = "http://littlinks.cxm" #c.url.default_page = "http://troubleshooters.com" #c.url.start_pages = "http://troubleshooters.com" c.zoom.default = 140 ##################### END GENERAL SETTINGS ############ # Following line loads the config file without consulting # the autoconfig.yaml file in the same directory. If you # want to consult autoconfig.yml, change the "False" to # "True". config.load_autoconfig(False)