Merge pull request #10 from gytic/taskbar-term

fix(taskbar): use correct attr value to check for tui applications
This commit is contained in:
gytic 2025-07-28 22:31:30 +02:00 committed by GitHub
commit cf2d3cd126
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -115,7 +115,7 @@ in {
plugin_id = "2" + builtins.toString ptr;
plugin_desktop = let
desc = if elm ? description then elm.description else "";
term = if elm ? term && elm.term then "true" else "false";
term = if elm ? terminal && elm.terminal then "true" else "false";
exec = slib.getExe elm;
in pkgs.writeTextFile {
name = "${elm.name}.desktop";