афыввафыв123

This commit is contained in:
2025-06-08 23:07:12 +03:00
parent 8a69b6e86a
commit c663990640
18 changed files with 499 additions and 101 deletions

3
matugen/colors.css Normal file
View File

@@ -0,0 +1,3 @@
<* for name, value in colors *>
@define-color {{name}} {{value.default.hex}};
<* endfor *>

27
matugen/config.toml Normal file
View File

@@ -0,0 +1,27 @@
[config]
[templates.hyprland]
input_path = "hyprland.conf"
output_path = "~/.config/hypr/colors.conf"
post_hook = "hyprctl reload"
[templates.kitty]
input_path = 'kitty.conf'
output_path = '~/.config/kitty/colors.conf'
[templates.waybar]
input_path = 'colors.css'
output_path = '~/.config/waybar/colors.css'
post_hook = 'pkill -SIGUSR2 waybar'
[templates.gtk3]
input_path = 'colors.css'
output_path = '~/.config/gtk-3.0/colors.css'
[templates.gtk4]
input_path = 'colors.css'
output_path = '~/.config/gtk-4.0/colors.css'
[templates.wofi]
input_path = "colors.css"
output_path = "~/.config/wofi/colors.css"

4
matugen/hyprland.conf Normal file
View File

@@ -0,0 +1,4 @@
<* for name, value in colors *>
$image = {{image}}
${{name}} = rgba({{value.default.hex_stripped}}ff)
<* endfor *>

40
matugen/kitty.conf Normal file
View File

@@ -0,0 +1,40 @@
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}}
# black
color8 #262626
color0 #4c4c4c
# red
color1 #ac8a8c
color9 #c49ea0
# green
color2 #8aac8b
color10 #9ec49f
# yellow
color3 #aca98a
color11 #c4c19e
# blue
color4 {{colors.primary.default.hex}}
color12 #a39ec4
# magenta
color5 #ac8aac
color13 #c49ec4
# cyan
color6 #8aacab
color14 #9ec3c4
# white
color15 #e7e7e7
color7 #f0f0f0