From 2cf1b0368545c20dc532dbaf53d753ef0d018440 Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Tue, 8 Jul 2025 22:58:09 +0200 Subject: [PATCH] services/wayneko: add catppuccin theming --- modules/services/wayneko/module.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/services/wayneko/module.nix b/modules/services/wayneko/module.nix index 2eb2a49..b028bf8 100644 --- a/modules/services/wayneko/module.nix +++ b/modules/services/wayneko/module.nix @@ -28,7 +28,13 @@ in { after = ["graphical-session.target"]; serviceConfig = { - ExecStart = "${getExe custom-wayneko} --layer top --type striped"; + ExecStart = '' + ${getExe custom-wayneko}\ + --layer top\ + --type striped\ + --background-colour 0xb4befe\ + --outline-colour 0x1e1e2e + ''; Restart = "on-failure"; RestartSec = 1; TimeoutStopSec = 10;