1
0
Fork 0

Fixed notifications in taskwarrior

This commit is contained in:
Malte Brandy 2020-01-19 20:16:10 +01:00
parent 9e50af9d1b
commit ad035330f3
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9

View file

@ -104,7 +104,7 @@
executable = true;
text = ''
#!${pkgs.bash}/bin/bash
tee >(nc 127.0.0.1 6545)
${pkgs.coreutils}/bin/tee >(${pkgs.netcat}/bin/nc 127.0.0.1 6545)
'';
};
"modify-kassandra-notification" = {
@ -112,7 +112,7 @@
executable = true;
text = ''
#!${pkgs.bash}/bin/bash
tail -n 1 | tee >(nc 127.0.0.1 6545)
${pkgs.coreutils}/bin/tail -n 1 | ${pkgs.coreutils}/bin/tee >(${pkgs.netcat}/bin/nc 127.0.0.1 6545)
'';
};
};