fix(taskbar): use correct attr value to check for tui applications

This commit is contained in:
gytic 2025-07-28 22:30:00 +02:00
parent e2ff8dded5
commit aab066428d

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";