Add taffybar startup tray diagnostics

This commit is contained in:
2026-03-22 07:27:12 -07:00
committed by Kat Huang
parent 069d97cea9
commit 51f4a53a40
5 changed files with 20 additions and 12 deletions

View File

@@ -58,7 +58,13 @@ makeEnable config "myModules.taffybar" false {
enable = true;
package = inputs.imalison-taffybar.defaultPackage.${pkgs.stdenv.hostPlatform.system};
};
systemd.user.services.taffybar.Service.ExecCondition = "${skipTaffybarInKde}";
systemd.user.services.taffybar.Service = {
ExecCondition = "${skipTaffybarInKde}";
# Temporary startup debugging: keep a plain-text log outside journald so
# the next login/startup leaves easy-to-inspect tray traces behind.
StandardOutput = "append:/tmp/taffybar-service.log";
StandardError = "append:/tmp/taffybar-service.log";
};
}
];
}