From bcd478bfaa2e91bd4a0946e5aad775cf65e95f1d Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Fri, 22 Feb 2019 12:53:13 +0100 Subject: Support terminal tasks in tasker --- gui/tasker.nix | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gui/tasker.nix') diff --git a/gui/tasker.nix b/gui/tasker.nix index 0805ac8..43a40df 100644 --- a/gui/tasker.nix +++ b/gui/tasker.nix @@ -5,11 +5,19 @@ let "bsc_edit" = { description = "Grid refinement BSc thesis editor"; directory = "~/university/documents/bachelor/arbeit"; + terminal = false; command = "nix-shell --run 'nvim-qt --no-ext-tabline'"; }; + "bsc_shell" = { + description = "Grid refinement BSc thesis shell"; + directory = "~/university/documents/bachelor/arbeit"; + terminal = true; + command = "nix-shell --command fish"; + }; "bsc_view" = { description = "Grid refinement BSc thesis PDF"; directory = "~/university/documents/bachelor/arbeit"; + terminal = false; command = "evince build/main.pdf"; }; }; -- cgit v1.2.3