aboutsummaryrefslogtreecommitdiff
path: root/.scripts/whatamidoing
diff options
context:
space:
mode:
authorMarvin Borner2023-08-29 15:44:16 +0200
committerMarvin Borner2023-08-29 15:46:00 +0200
commit8f6e86ee72a20fc9bbac62d71e0921b152eaa0bb (patch)
tree2feb0ee3276bc24ab847a57938fd9fc281b260d7 /.scripts/whatamidoing
parente6e5c70f6cc741e0edee2f0c1de07909d1c91edc (diff)
Sync
Not much tbh. I'm fairly happy with my setup
Diffstat (limited to '.scripts/whatamidoing')
-rwxr-xr-x.scripts/whatamidoing7
1 files changed, 6 insertions, 1 deletions
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