From 2e518fb43b09062d5a502bfb555a4e0f8208e3a1 Mon Sep 17 00:00:00 2001 From: lucy Date: Wed, 21 Jan 2026 19:21:23 +0100 Subject: [PATCH] set different templates for discord and vesktop --- config.toml | 16 +++++++--------- templates/kitty.conf | 2 +- templates/nvim.lua | 4 ++-- 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/config.toml b/config.toml index 0bb8720..a7924c7 100644 --- a/config.toml +++ b/config.toml @@ -4,17 +4,11 @@ reload_apps = true # set_wallpaper = true # wallpaper_tool = "swww" -[templates.foot] -input_path = "~/.config/matugen/templates/foot.ini" -output_path = "~/.config/foot/colors.ini" -[templates.waybar] -input_path = "~/.config/matugen/templates/waybar.css" -output_path = "~/.config/waybar/colors.css" -[templates.nvim] -input_path = "~/.config/matugen/templates/nvim.lua" -output_path = "~/.config/nvim/colors/wallust.lua" +#[templates.nvim] +#input_path = "~/.config/matugen/templates/nvim.lua" +#output_path = "~/.config/nvim/colors/wallust.lua" [templates.gtk3] input_path = "~/.config/matugen/templates/gtk.css" @@ -32,6 +26,10 @@ output_path = "~/.config/fuzzel/colors.ini" input_path = "~/.config/matugen/templates/discord.css" output_path = "~/.config/Vencord/themes/wallust.css" +[templates.vesktop] +input_path = "~/.config/matugen/templates/discord.css" +output_path = "~/.config/vesktop/themes/wallust.css" + [templates.qt6ct] input_path = "~/.config/matugen/templates/qtct.conf" output_path = "~/.config/qt6ct/colors/wallust.conf" diff --git a/templates/kitty.conf b/templates/kitty.conf index 0b5db98..a2c5be9 100644 --- a/templates/kitty.conf +++ b/templates/kitty.conf @@ -1,7 +1,7 @@ # The kitty terminal template for matugen cursor {{colors.primary.default.hex}} -background {{colors.background.default.hex}} +background {{colors.background.default.hex | set_lightness: -2.0}} foreground {{colors.on_background.default.hex}} color0 {{colors.surface.default.hex}} diff --git a/templates/nvim.lua b/templates/nvim.lua index 68d1f16..a39222f 100644 --- a/templates/nvim.lua +++ b/templates/nvim.lua @@ -6,7 +6,7 @@ end vim.g.colors_name = "matugen" local c = { - bg = "{{colors.background.default.hex}}", + bg = "{{colors.background.default.hex | set_lightness: 1.0}}", fg = "{{colors.on_background.default.hex}}", cursor = "{{colors.primary.default.hex}}", c0 = "{{colors.surface.default.hex}}", @@ -25,7 +25,7 @@ local c = { c13 = "{{colors.on_primary_container.default.hex}}", c14 = "{{colors.on_surface_variant.default.hex}}", c15 = "{{colors.inverse_surface.default.hex}}", - tbg = "{{colors.background.default.hex}}", -- Matugen filters usually not inline + tbg = "{{colors.surface.default.hex | set_lightness: 4.0}}", -- Matugen filters usually not inline } local hl = function(group, opts)