diff options
author | tv <tv@krebsco.de> | 2016-10-13 21:53:20 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-10-13 21:53:20 +0200 |
commit | f81a021f0ccf900d8fdcc2c414ebac528f043760 (patch) | |
tree | f84036b6f415e4b073220bd8593360c73e027ac4 /tv/5pkgs/q/default.nix | |
parent | b7cba0244358beb61aaab135cbe62c331ab6c900 (diff) |
tv q: print TODOs first
Diffstat (limited to 'tv/5pkgs/q/default.nix')
-rw-r--r-- | tv/5pkgs/q/default.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tv/5pkgs/q/default.nix b/tv/5pkgs/q/default.nix index b19402fa4..f923950f0 100644 --- a/tv/5pkgs/q/default.nix +++ b/tv/5pkgs/q/default.nix @@ -178,6 +178,11 @@ in pkgs.writeBashBin "q" '' set -eu export PATH=/var/empty + (${q-todo}) || : + if [ "$PWD" != "$HOME" ]; then + (HOME=$PWD; ${q-todo}) || : + fi + echo ${q-cal} echo ${q-isodate} @@ -189,8 +194,4 @@ pkgs.writeBashBin "q" '' (${q-online}) & (${q-thermal_zone}) & wait - ${q-todo} - if [ "$PWD" != "$HOME" ]; then - (HOME=$PWD; ${q-todo}) - fi '' |