ADD activity watch

This commit is contained in:
Nathan Dwarshuis 2023-04-09 11:09:53 -04:00
parent 8a9918125f
commit 079f88ff92
4 changed files with 16 additions and 0 deletions

View File

@ -22,6 +22,7 @@ data:
xsane: {{ and $desktop (promptBool "xsane" false) }}
vpn: {{ and $desktop (promptBool "vpn" false) }}
seafile: {{ and $desktop (promptBool "seafile" false) }}
activitywatch: {{ and $desktop (promptBool "activitywatch" false) }}
conky_alias: {{ if $desktop -}}{{ (promptString "conky" "none") }}{{ else }}none{{ end }}
rofi_alias: {{ if $desktop -}}{{ (promptString "rofi-alias" "none") }}{{ else }}none{{ end }}
development:

View File

@ -0,0 +1,7 @@
#! /usr/bin/env bash
# start activity watch without QT
/usr/bin/aw-server &
/usr/bin/aw-watcher-afk &
/usr/bin/aw-watcher-window &

View File

@ -0,0 +1,5 @@
#! /usr/bin/env bash
# kill all activity-watch deamons
pkill aw-

View File

@ -34,6 +34,9 @@ emacs-start &
{{ if .features.seafile -}}
seafile-applet > /dev/null 2>&1 &
{{- end }}
{{ if .features.activitywatch -}}
aw-start > /dev/null 2>&1 &
{{- end }}
flameshot > /dev/null 2>&1 &
rofi-bw -d 3600 &