mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
🎨 Update config
This commit is contained in:
parent
394d56fa69
commit
07805d44aa
28 changed files with 845 additions and 415 deletions
|
|
@ -1,88 +0,0 @@
|
|||
config_version: 2
|
||||
settings:
|
||||
colors.completion.category.bg:
|
||||
global: '#002b36'
|
||||
colors.completion.category.border.bottom:
|
||||
global: '#073642'
|
||||
colors.completion.category.border.top:
|
||||
global: '#073642'
|
||||
colors.completion.even.bg:
|
||||
global: '#073642'
|
||||
colors.completion.fg:
|
||||
global: '#ffffff'
|
||||
colors.completion.item.selected.bg:
|
||||
global: '#002b36'
|
||||
colors.completion.item.selected.border.bottom:
|
||||
global: '#002b36'
|
||||
colors.completion.item.selected.border.top:
|
||||
global: '#002b36'
|
||||
colors.completion.item.selected.fg:
|
||||
global: '#93a1a1'
|
||||
colors.completion.odd.bg:
|
||||
global: '#073642'
|
||||
colors.completion.scrollbar.bg:
|
||||
global: '#073642'
|
||||
colors.completion.scrollbar.fg:
|
||||
global: '#002b36'
|
||||
colors.downloads.bar.bg:
|
||||
global: '#002b36'
|
||||
colors.downloads.error.bg:
|
||||
global: '#dc322f'
|
||||
colors.downloads.start.bg:
|
||||
global: '#268bd2'
|
||||
colors.downloads.stop.bg:
|
||||
global: '#619100'
|
||||
colors.messages.info.bg:
|
||||
global: '#002b36'
|
||||
colors.messages.info.border:
|
||||
global: '#002b36'
|
||||
colors.messages.warning.border:
|
||||
global: '#002b36'
|
||||
colors.statusbar.caret.bg:
|
||||
global: '#002b36'
|
||||
colors.statusbar.command.bg:
|
||||
global: '#002b36'
|
||||
colors.statusbar.insert.bg:
|
||||
global: '#002b36'
|
||||
colors.statusbar.normal.bg:
|
||||
global: '#002b36'
|
||||
colors.statusbar.passthrough.bg:
|
||||
global: '#002b36'
|
||||
colors.statusbar.private.bg:
|
||||
global: '#6c71c4'
|
||||
colors.statusbar.url.error.fg:
|
||||
global: '#dc322f'
|
||||
colors.statusbar.url.fg:
|
||||
global: '#2aa198'
|
||||
colors.statusbar.url.success.http.fg:
|
||||
global: '#2aa198'
|
||||
colors.statusbar.url.success.https.fg:
|
||||
global: '#2aa198'
|
||||
colors.tabs.bar.bg:
|
||||
global: '#073642'
|
||||
colors.tabs.even.bg:
|
||||
global: '#073642'
|
||||
colors.tabs.indicator.error:
|
||||
global: '#dc322f'
|
||||
colors.tabs.indicator.start:
|
||||
global: '#002b36'
|
||||
colors.tabs.indicator.stop:
|
||||
global: '#002b36'
|
||||
colors.tabs.odd.bg:
|
||||
global: '#073642'
|
||||
colors.tabs.selected.even.bg:
|
||||
global: '#002b36'
|
||||
colors.tabs.selected.even.fg:
|
||||
global: '#073642'
|
||||
colors.tabs.selected.odd.bg:
|
||||
global: '#002b36'
|
||||
colors.tabs.selected.odd.fg:
|
||||
global: '#073642'
|
||||
colors.webpage.bg:
|
||||
global: white
|
||||
colors.webpage.darkmode.enabled:
|
||||
global: false
|
||||
downloads.position:
|
||||
global: bottom
|
||||
tabs.position:
|
||||
global: top
|
||||
|
|
@ -1,34 +1,85 @@
|
|||
## Generall
|
||||
c.url.start_pages = ["https://start.duckduckgo.com"] # Start page
|
||||
config.load_autoconfig()
|
||||
# general
|
||||
c.url.start_pages = ["https://start.duckduckgo.com"]
|
||||
config.set("colors.webpage.darkmode.enabled", True)
|
||||
c.downloads.location.directory = '/home/sasha/Загрузки'
|
||||
c.completion.shrink = True
|
||||
config.load_autoconfig()
|
||||
|
||||
c.downloads.location.directory = '/home/sasha/Downloads' # Download folder
|
||||
c.tabs.show = 'multiple' # When to show the tab bar. [always, never, multiple ,switching]
|
||||
# tabs, download
|
||||
c.tabs.show = 'multiple' #always, never, multiple ,switching
|
||||
c.tabs.position = "top"
|
||||
c.downloads.position = "bottom"
|
||||
|
||||
config.set('content.cookies.accept', 'all', 'chrome-devtools://*') # Accept to cookie
|
||||
config.set('content.cookies.accept', 'all', 'devtools://*') # Accept to cookie
|
||||
|
||||
config.set('content.images', True, 'chrome-devtools://*') # Auto load images
|
||||
config.set('content.images', True, 'devtools://*') # Auto load images
|
||||
|
||||
config.set('content.javascript.enabled', True, 'chrome-devtools://*') # Enable JavaScript
|
||||
config.set('content.javascript.enabled', True, 'devtools://*') # Enable JavaScript
|
||||
config.set('content.javascript.enabled', True, 'chrome://*/*') # Enable JavaScript
|
||||
config.set('content.javascript.enabled', True, 'qute://*/*') # Enable JavaScript
|
||||
|
||||
## User agent
|
||||
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}', 'https://web.whatsapp.com/')
|
||||
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:71.0) Gecko/20100101 Firefox/71.0', 'https://accounts.google.com/*')
|
||||
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99 Safari/537.36', 'https://*.slack.com/*')
|
||||
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:71.0) Gecko/20100101 Firefox/71.0', 'https://docs.google.com/*')
|
||||
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:71.0) Gecko/20100101 Firefox/71.0', 'https://drive.google.com/*')
|
||||
|
||||
|
||||
## Search engines which can be used via the address bar.
|
||||
# alias, binds, search
|
||||
c.aliases = {'q':'quit', 'w':'session-save', 'wq':'quit --save', 'e':'open'}
|
||||
config.bind('<l><p', 'spawn --userscript qute-pass')
|
||||
c.url.searchengines = {
|
||||
'DEFAULT': 'https://www.google.com/search?q={}',
|
||||
'ddg': 'https://duckduckgo.com/?q={}',
|
||||
'arw': 'https://wiki.archlinux.org/?search={}',
|
||||
'rdd': 'https://www.reddit.com/r/{}'
|
||||
}
|
||||
# Enable cookie, image, js & user agents
|
||||
config.set('content.cookies.accept', 'all', 'chrome-devtools://*')
|
||||
config.set('content.cookies.accept', 'all', 'devtools://*')
|
||||
config.set('content.images', True, 'chrome-devtools://*')
|
||||
config.set('content.images', True, 'devtools://*')
|
||||
config.set('content.javascript.enabled', True, 'chrome-devtools://*')
|
||||
config.set('content.javascript.enabled', True, 'devtools://*')
|
||||
config.set('content.javascript.enabled', True, 'chrome://*/*')
|
||||
config.set('content.javascript.enabled', True, 'qute://*/*')
|
||||
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:71.0) Gecko/20100101 Firefox/71.0', 'https://accounts.google.com/*')
|
||||
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99 Safari/537.36', 'https://*.slack.com/*')
|
||||
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:71.0) Gecko/20100101 Firefox/71.0', 'https://docs.google.com/*')
|
||||
config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:71.0) Gecko/20100101 Firefox/71.0', 'https://drive.google.com/*')
|
||||
|
||||
# theme
|
||||
## Solarised #########
|
||||
color01 = "#002B36"
|
||||
color02 = "#073642"
|
||||
color03 = "#619100"
|
||||
color04 = "#268BD2"
|
||||
color05 = "#6C71C4"
|
||||
color06 = "#dc322f"
|
||||
color07 = "#FFFFFF"
|
||||
color08 = "#93A1A1"
|
||||
color09 = "#2AA198"
|
||||
######################
|
||||
|
||||
c.colors.completion.category.bg = color01
|
||||
c.colors.completion.category.border.bottom = color02
|
||||
c.colors.completion.category.border.top = color02
|
||||
c.colors.completion.even.bg = color02
|
||||
c.colors.completion.fg = color07
|
||||
c.colors.completion.item.selected.bg = color01
|
||||
c.colors.completion.item.selected.border.bottom = color01
|
||||
c.colors.completion.item.selected.border.top = color01
|
||||
c.colors.completion.item.selected.fg = color08
|
||||
c.colors.completion.odd.bg = color02
|
||||
c.colors.downloads.bar.bg = color01
|
||||
c.colors.downloads.error.bg = color06
|
||||
c.colors.downloads.start.bg = color03
|
||||
c.colors.downloads.stop.bg = color04
|
||||
#c.colors.messages.info.bg = color01
|
||||
#c.colors.messages.info.border = color01
|
||||
#c.colors.messages.warning.border = color01
|
||||
c.colors.statusbar.caret.bg = color01
|
||||
c.colors.statusbar.command.bg = color01
|
||||
c.colors.statusbar.insert.bg = color01
|
||||
c.colors.statusbar.normal.bg = color01
|
||||
c.colors.statusbar.passthrough.bg = color01
|
||||
c.colors.statusbar.private.bg = color04
|
||||
c.colors.statusbar.url.error.fg = color06
|
||||
c.colors.statusbar.url.fg = color07
|
||||
c.colors.statusbar.url.success.http.fg = color07
|
||||
c.colors.statusbar.url.success.https.fg = color07
|
||||
c.colors.tabs.bar.bg = color02
|
||||
c.colors.tabs.even.bg = color02
|
||||
c.colors.tabs.indicator.error = color06
|
||||
c.colors.tabs.indicator.start = color01
|
||||
c.colors.tabs.indicator.stop = color01
|
||||
c.colors.tabs.odd.bg = color02
|
||||
c.colors.tabs.selected.even.bg = color01
|
||||
c.colors.tabs.selected.even.fg = color02
|
||||
c.colors.tabs.selected.odd.bg = color01
|
||||
c.colors.tabs.selected.odd.fg = color02
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue