Added support for wofi

This commit is contained in:
Hannes
2026-02-18 16:14:41 +01:00
parent 5d66984177
commit 4d8429e976
2 changed files with 67 additions and 1 deletions

View File

@@ -20,3 +20,7 @@ output_path = "~/.config/kitty/colors-kitty.conf"
[templates.hyprlock]
input_path = "~/.config/matugen/templates/hyprlock.conf"
output_path = "~/.config/hypr/hyprlock.conf"
[templates.wofi]
input_path = "~/.config/matugen/templates/wofi.css"
output_path = "~/.config/wofi/style.css"

62
templates/wofi.css Normal file
View File

@@ -0,0 +1,62 @@
*{
border: none;
box-shadow: none;
outline: none;
}
window {
font-size: 14px;
font-family: "JetBrains Mono";
background-color: {{colors.surface.default.hex}};
border-radius: 8px;
opacity: 0.90;
}
#outer-box {
margin: 10px 10px 20px 10px;
background-color: {{colors.surface.default.hex}};
opacity: 0.90;
}
#inner-box {
margin: 10px;
background-color: {{colors.surface.default.hex}};
opacity: 0.90;
}
#entry {
padding: 5px 10px;
border-radius: 20px;
}
#entry #text {
padding: 0px 0px 0px 10px;
font-weight: normal;
color: {{colors.secondary.default.hex}};
}
#entry:selected {
background-color: {{colors.primary_container.default.hex}};
}
#entry:selected #text {
padding: 0px 0px 0px 10px;
font-weight: normal;
color: {{colors.primary.default.hex}};
}
#input {
background: transparent;
margin: 0px 5px 0px 20px;
color: {{colors.primary.default.hex}};
padding: 5px;
}
#image {
margin-left: 20px;
margin-right: 20px;
}
#scroll {
margin: 0px;
}