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

Merged
krauterbaquette merged 1 commit from taskbar-term into Dev 2025-07-28 22:31:30 +02:00
Showing only changes of commit aab066428d - Show all commits

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