set different templates for discord and vesktop

This commit is contained in:
lucy 2026-01-21 19:21:23 +01:00
parent 723765cc18
commit 2e518fb43b
3 changed files with 10 additions and 12 deletions

View File

@ -4,17 +4,11 @@ reload_apps = true
# set_wallpaper = true # set_wallpaper = true
# wallpaper_tool = "swww" # 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] #[templates.nvim]
input_path = "~/.config/matugen/templates/nvim.lua" #input_path = "~/.config/matugen/templates/nvim.lua"
output_path = "~/.config/nvim/colors/wallust.lua" #output_path = "~/.config/nvim/colors/wallust.lua"
[templates.gtk3] [templates.gtk3]
input_path = "~/.config/matugen/templates/gtk.css" input_path = "~/.config/matugen/templates/gtk.css"
@ -32,6 +26,10 @@ output_path = "~/.config/fuzzel/colors.ini"
input_path = "~/.config/matugen/templates/discord.css" input_path = "~/.config/matugen/templates/discord.css"
output_path = "~/.config/Vencord/themes/wallust.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] [templates.qt6ct]
input_path = "~/.config/matugen/templates/qtct.conf" input_path = "~/.config/matugen/templates/qtct.conf"
output_path = "~/.config/qt6ct/colors/wallust.conf" output_path = "~/.config/qt6ct/colors/wallust.conf"

View File

@ -1,7 +1,7 @@
# The kitty terminal template for matugen # The kitty terminal template for matugen
cursor {{colors.primary.default.hex}} 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}} foreground {{colors.on_background.default.hex}}
color0 {{colors.surface.default.hex}} color0 {{colors.surface.default.hex}}

View File

@ -6,7 +6,7 @@ end
vim.g.colors_name = "matugen" vim.g.colors_name = "matugen"
local c = { local c = {
bg = "{{colors.background.default.hex}}", bg = "{{colors.background.default.hex | set_lightness: 1.0}}",
fg = "{{colors.on_background.default.hex}}", fg = "{{colors.on_background.default.hex}}",
cursor = "{{colors.primary.default.hex}}", cursor = "{{colors.primary.default.hex}}",
c0 = "{{colors.surface.default.hex}}", c0 = "{{colors.surface.default.hex}}",
@ -25,7 +25,7 @@ local c = {
c13 = "{{colors.on_primary_container.default.hex}}", c13 = "{{colors.on_primary_container.default.hex}}",
c14 = "{{colors.on_surface_variant.default.hex}}", c14 = "{{colors.on_surface_variant.default.hex}}",
c15 = "{{colors.inverse_surface.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) local hl = function(group, opts)