Add gtk/qt matugen support (colors are wip), Fix some text in the Settings Tabs
This commit is contained in:
parent
9a71598944
commit
9b11be03af
19 changed files with 142 additions and 49 deletions
|
|
@ -135,7 +135,12 @@ Singleton {
|
|||
Process {
|
||||
id: generateColorsProcess
|
||||
command: {
|
||||
var cmd = ["matugen", "image", WallpaperService.currentWallpaper, "--config", Quickshell.shellDir + "/Assets/Matugen/matugen.toml"]
|
||||
// Choose config based on external theming toggles
|
||||
var cfg = Quickshell.shellDir + "/Assets/Matugen/matugen.toml"
|
||||
if (!Settings.data.colorSchemes.themeApps) {
|
||||
cfg = Quickshell.shellDir + "/Assets/Matugen/matugen.base.toml"
|
||||
}
|
||||
var cmd = ["matugen", "image", WallpaperService.currentWallpaper, "--config", cfg]
|
||||
if (!Settings.data.colorSchemes.darkMode) {
|
||||
cmd.push("--mode", "light")
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue