From 8f6e86ee72a20fc9bbac62d71e0921b152eaa0bb Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 29 Aug 2023 15:44:16 +0200 Subject: Sync Not much tbh. I'm fairly happy with my setup --- .scripts/whatamidoing | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.scripts/whatamidoing') diff --git a/.scripts/whatamidoing b/.scripts/whatamidoing index 3c65677..81612b1 100755 --- a/.scripts/whatamidoing +++ b/.scripts/whatamidoing @@ -1,8 +1,13 @@ #!/bin/sh # arbtt files have limited read access (good!) ==> write current tag to file using cronjob +if ! [ $(pgrep "arbtt-capture") ]; then + notify-send "arbtt" "arbtt-capture is not running!" +fi + if [ "$1" = "sync" ]; then - /home/melvin/.cabal/bin/arbtt-stats --logfile=/home/melvin/.arbtt/capture.log --categorizefile=/home/melvin/.arbtt/categorize.cfg -f '$sampleage < 0:01' | tail -n 1 | awk '{print $1}' >/home/melvin/.arbtt/current + /home/melvin/.cabal/bin/arbtt-stats --logfile=/home/melvin/.arbtt/capture.log --categorizefile=/home/melvin/.arbtt/categorize.cfg -f '$sampleage < 0:01' --also-inactive | tail -n 1 | awk '{print $1}' >/home/melvin/.arbtt/current.tmp + mv /home/melvin/.arbtt/current.tmp /home/melvin/.arbtt/current else cat /home/melvin/.arbtt/current fi -- cgit v1.2.3