Add Dunst adapter to Sithego for theme generation and configuration

This commit is contained in:
2026-02-17 22:49:14 +01:00
parent a3c9ccbf6f
commit ed6dc1d54b
5 changed files with 246 additions and 327 deletions
+5
View File
@@ -2,6 +2,7 @@ package main
import (
"Sithego/themer"
"Sithego/themer/adapters/dunst"
"Sithego/themer/adapters/gtk"
"Sithego/themer/adapters/intellij"
"Sithego/themer/adapters/qt"
@@ -30,4 +31,8 @@ func main() {
panic(err)
}
if err := dunst.New(dunst.WithOutputDir("../dotfiles/.config/dunst/")).Generate(theme); err != nil {
panic(err)
}
}