From 06e036a1164d6fb48a6fa317d542e75db5cbe43d Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 23 Jun 2025 17:44:47 -0500 Subject: [PATCH] chore: add 'status' task for linux, fix tail task --- tasks/Taskfile_linux.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tasks/Taskfile_linux.yml b/tasks/Taskfile_linux.yml index 5b2bf84..6321803 100644 --- a/tasks/Taskfile_linux.yml +++ b/tasks/Taskfile_linux.yml @@ -21,8 +21,13 @@ tasks: - systemctl daemon-reload --user # - systemctl enable HATray --user - systemctl start HATray --user - + + status: + desc: "Show the status of the service" + cmds: + - systemctl status HATray --user + tail: desc: "Tail the log file" cmds: - - sudo journalctl -u HATray -f \ No newline at end of file + - journalctl --user-unit HATray.service -ef \ No newline at end of file