Added matugen integration with other applications and theming
This commit is contained in:
@@ -6,8 +6,6 @@ general {
|
|||||||
gaps_in = 5
|
gaps_in = 5
|
||||||
gaps_out = 10
|
gaps_out = 10
|
||||||
border_size = 2
|
border_size = 2
|
||||||
col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
|
|
||||||
col.inactive_border = rgba(595959aa)
|
|
||||||
|
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
|
|
||||||
@@ -15,29 +13,6 @@ general {
|
|||||||
allow_tearing = false
|
allow_tearing = false
|
||||||
}
|
}
|
||||||
|
|
||||||
#xwayland {
|
|
||||||
# force_zero_scaling = true
|
|
||||||
#}
|
|
||||||
|
|
||||||
decoration {
|
|
||||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
|
||||||
|
|
||||||
blur {
|
|
||||||
enabled = true
|
|
||||||
size = 3
|
|
||||||
passes = 1
|
|
||||||
}
|
|
||||||
|
|
||||||
shadow {
|
|
||||||
enabled = yes
|
|
||||||
range = 4
|
|
||||||
render_power = 3
|
|
||||||
color = rgba(1a1a1aee)
|
|
||||||
}
|
|
||||||
|
|
||||||
rounding = 15
|
|
||||||
}
|
|
||||||
|
|
||||||
animations {
|
animations {
|
||||||
enabled = yes
|
enabled = yes
|
||||||
|
|
||||||
@@ -58,4 +33,4 @@ misc {
|
|||||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||||
force_default_wallpaper = 0 # Set to 0 or 1 to disable the anime mascot wallpapers
|
force_default_wallpaper = 0 # Set to 0 or 1 to disable the anime mascot wallpapers
|
||||||
disable_splash_rendering = true
|
disable_splash_rendering = true
|
||||||
}
|
}
|
||||||
|
@@ -77,3 +77,5 @@ macos_titlebar_color #16161e
|
|||||||
# macos_titlebar_color #1f2335
|
# macos_titlebar_color #1f2335
|
||||||
|
|
||||||
background_opacity 1
|
background_opacity 1
|
||||||
|
|
||||||
|
include colors.conf
|
||||||
|
26
dot_config/matugen/config.toml
Normal file
26
dot_config/matugen/config.toml
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
[config]
|
||||||
|
# If set to enabled, it will check for updates when you run the matugen command, notifying you that an update is avaiable.
|
||||||
|
# WARNING: Matugen needs to be compiled with the `update-informer` feature for this to work.
|
||||||
|
version_check = false
|
||||||
|
|
||||||
|
[templates.hyprland]
|
||||||
|
input_path = '~/.config/matugen/templates/hyprland-colors.conf'
|
||||||
|
output_path = '~/.config/hypr/hyprland.conf.d/colors.conf'
|
||||||
|
post_hook = 'hyprctl reload'
|
||||||
|
|
||||||
|
[templates.qt6ct]
|
||||||
|
input_path = '~/.config/matugen/templates/qtct-colors.conf'
|
||||||
|
output_path = '~/.config/qt6ct/colors/matugen.conf'
|
||||||
|
|
||||||
|
[templates.gtk3]
|
||||||
|
input_path = '~/.config/matugen/templates/gtk-colors.css'
|
||||||
|
output_path = '~/.config/gtk-3.0/colors.css'
|
||||||
|
|
||||||
|
[templates.gtk4]
|
||||||
|
input_path = '~/.config/matugen/templates/gtk-colors.css'
|
||||||
|
output_path = '~/.config/gtk-4.0/colors.css'
|
||||||
|
|
||||||
|
[templates.kitty]
|
||||||
|
input_path = '~/.config/matugen/templates/kitty-colors.conf'
|
||||||
|
output_path = '~/.config/kitty/colors.conf'
|
||||||
|
|
23
dot_config/matugen/templates/gtk-colors.css
Normal file
23
dot_config/matugen/templates/gtk-colors.css
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* GTK Colors
|
||||||
|
* Generated with Matugen
|
||||||
|
*/
|
||||||
|
|
||||||
|
@define-color accent_color {{colors.primary_fixed_dim.default.hex}};
|
||||||
|
@define-color accent_fg_color {{colors.on_primary_fixed.default.hex}};
|
||||||
|
@define-color accent_bg_color {{colors.primary_fixed_dim.default.hex}};
|
||||||
|
@define-color window_bg_color {{colors.surface_dim.default.hex}};
|
||||||
|
@define-color window_fg_color {{colors.on_surface.default.hex}};
|
||||||
|
@define-color headerbar_bg_color {{colors.surface_dim.default.hex}};
|
||||||
|
@define-color headerbar_fg_color {{colors.on_surface.default.hex}};
|
||||||
|
@define-color popover_bg_color {{colors.surface_dim.default.hex}};
|
||||||
|
@define-color popover_fg_color {{colors.on_surface.default.hex}};
|
||||||
|
@define-color view_bg_color {{colors.surface.default.hex}};
|
||||||
|
@define-color view_fg_color {{colors.on_surface.default.hex}};
|
||||||
|
@define-color card_bg_color {{colors.surface.default.hex}};
|
||||||
|
@define-color card_fg_color {{colors.on_surface.default.hex}};
|
||||||
|
@define-color sidebar_bg_color @window_bg_color;
|
||||||
|
@define-color sidebar_fg_color @window_fg_color;
|
||||||
|
@define-color sidebar_border_color @window_bg_color;
|
||||||
|
@define-color sidebar_backdrop_color @window_bg_color;
|
||||||
|
|
24
dot_config/matugen/templates/hyprland-colors.conf
Normal file
24
dot_config/matugen/templates/hyprland-colors.conf
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
$image = {{image}}
|
||||||
|
<* for name, value in colors *>
|
||||||
|
${{name}} = rgba({{value.default.hex_stripped}}ff)
|
||||||
|
<* endfor *>
|
||||||
|
|
||||||
|
general {
|
||||||
|
col.active_border = $outline
|
||||||
|
col.inactive_border = $outline_variant
|
||||||
|
}
|
||||||
|
|
||||||
|
decoration {
|
||||||
|
blur {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
|
shadow {
|
||||||
|
enabled = yes
|
||||||
|
range = 4
|
||||||
|
render_power = 3
|
||||||
|
color = $shadow
|
||||||
|
}
|
||||||
|
|
||||||
|
rounding = 15
|
||||||
|
}
|
8
dot_config/matugen/templates/kitty-colors.conf
Normal file
8
dot_config/matugen/templates/kitty-colors.conf
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
cursor {{colors.on_surface.default.hex}}
|
||||||
|
cursor_text_color {{colors.on_surface_variant.default.hex}}
|
||||||
|
|
||||||
|
foreground {{colors.on_surface.default.hex}}
|
||||||
|
background {{colors.surface.default.hex}}
|
||||||
|
selection_foreground {{colors.on_secondary.default.hex}}
|
||||||
|
selection_background {{colors.secondary_fixed_dim.default.hex}}
|
||||||
|
url_color {{colors.primary.default.hex}}
|
5
dot_config/matugen/templates/qtct-colors.conf
Normal file
5
dot_config/matugen/templates/qtct-colors.conf
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
[ColorScheme]
|
||||||
|
active_colors={{colors.on_background.default.hex}}, {{colors.surface.default.hex}}, #ffffff, #cacaca, #9f9f9f, #b8b8b8, {{colors.on_background.default.hex}}, #ffffff, {{colors.on_surface.default.hex}}, {{colors.background.default.hex}}, {{colors.background.default.hex}}, {{colors.shadow.default.hex}}, {{colors.primary_container.default.hex}}, {{colors.on_primary_container.default.hex}}, {{colors.secondary.default.hex}}, {{colors.primary.default.hex}}, {{colors.surface.default.hex}}, {{colors.scrim.default.hex}}, {{colors.surface.default.hex}}, {{colors.on_surface.default.hex}}, {{colors.secondary.default.hex}}
|
||||||
|
disabled_colors={{colors.on_background.default.hex}}, {{colors.surface.default.hex}}, #ffffff, #cacaca, #9f9f9f, #b8b8b8, {{colors.on_background.default.hex}}, #ffffff, {{colors.on_surface.default.hex}}, {{colors.background.default.hex}}, {{colors.background.default.hex}}, {{colors.shadow.default.hex}}, {{colors.primary_container.default.hex}}, {{colors.on_primary_container.default.hex}}, {{colors.secondary.default.hex}}, {{colors.primary.default.hex}}, {{colors.surface.default.hex}}, {{colors.scrim.default.hex}}, {{colors.surface.default.hex}}, {{colors.on_surface.default.hex}}, {{colors.secondary.default.hex}}
|
||||||
|
inactive_colors={{colors.on_background.default.hex}}, {{colors.surface.default.hex}}, #ffffff, #cacaca, #9f9f9f, #b8b8b8, {{colors.on_background.default.hex}}, #ffffff, {{colors.on_surface.default.hex}}, {{colors.background.default.hex}}, {{colors.background.default.hex}}, {{colors.shadow.default.hex}}, {{colors.primary_container.default.hex}}, {{colors.on_primary_container.default.hex}}, {{colors.secondary.default.hex}}, {{colors.primary.default.hex}}, {{colors.surface.default.hex}}, {{colors.scrim.default.hex}}, {{colors.surface.default.hex}}, {{colors.on_surface.default.hex}}, {{colors.secondary.default.hex}}
|
||||||
|
|
Reference in New Issue
Block a user