From aab066428d76b3f12f3f3fb4604e75bacfe7b2cc Mon Sep 17 00:00:00 2001 From: gytic <149968794+gytic@users.noreply.github.com> Date: Mon, 28 Jul 2025 22:30:00 +0200 Subject: [PATCH] fix(taskbar): use correct attr value to check for tui applications --- nixos95/taskbar.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos95/taskbar.nix b/nixos95/taskbar.nix index 7fad763..4b56921 100644 --- a/nixos95/taskbar.nix +++ b/nixos95/taskbar.nix @@ -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";