This commit is contained in:
Yuri Zamyatin 2025-06-22 18:38:52 +00:00
parent 2feac52b39
commit e5d95820a7
4 changed files with 7 additions and 2 deletions

View File

@ -30,6 +30,7 @@ PACKAGES=(
foot bemenu-wayland i3blocks mako libnotify # terminals, ui foot bemenu-wayland i3blocks mako libnotify # terminals, ui
wev wl-clipboard wtype slurp grim # interaction wev wl-clipboard wtype slurp grim # interaction
ttf-roboto ttf-roboto-mono ttf-font-awesome # fonts ttf-roboto ttf-roboto-mono ttf-font-awesome # fonts
kvantum kvantum-qt5 kvantum-theme-materia materia-gtk-theme # themes
) )

View File

@ -0,0 +1,2 @@
[General]
theme=MateriaDark

View File

@ -4,6 +4,9 @@ export PATH=~/.local/bin:$PATH
export WLR_RENDERER=vulkan export WLR_RENDERER=vulkan
export QT_STYLE_OVERRIDE=kvantum
export GTK_THEME=Materia-dark
for fpath in ~/.config/*/env.sh; do for fpath in ~/.config/*/env.sh; do
. "$fpath" . "$fpath"
done done

View File

@ -39,7 +39,7 @@ c.bindings.key_mappings.update(dict(zip("ьЬыЫфФпПбБжЖлЛуУяЯа
############################################ ############################################
# styles # styles
c.colors.webpage.preferred_color_scheme = 'dark' #c.colors.webpage.preferred_color_scheme = 'dark'
c.colors.webpage.darkmode.enabled = True c.colors.webpage.darkmode.enabled = True
c.colors.webpage.bg = '#'+env['QB_THEME_COLOR_BG'] c.colors.webpage.bg = '#'+env['QB_THEME_COLOR_BG']
c.fonts.default_family = 'Roboto' c.fonts.default_family = 'Roboto'
@ -51,7 +51,6 @@ c.url.searchengines = {
'!d': 'https://lite.duckduckgo.com/lite?&q={}', '!d': 'https://lite.duckduckgo.com/lite?&q={}',
'!g': 'https://google.com/search?hl=en&q={}', '!g': 'https://google.com/search?hl=en&q={}',
'!y': 'https://ya.ru/search/?text={}', '!y': 'https://ya.ru/search/?text={}',
'!c': 'https://chat.openai.com/chat?q={}',
} }
########################################### ###########################################