ADD activity watch
This commit is contained in:
parent
8a9918125f
commit
079f88ff92
|
@ -22,6 +22,7 @@ data:
|
||||||
xsane: {{ and $desktop (promptBool "xsane" false) }}
|
xsane: {{ and $desktop (promptBool "xsane" false) }}
|
||||||
vpn: {{ and $desktop (promptBool "vpn" false) }}
|
vpn: {{ and $desktop (promptBool "vpn" false) }}
|
||||||
seafile: {{ and $desktop (promptBool "seafile" false) }}
|
seafile: {{ and $desktop (promptBool "seafile" false) }}
|
||||||
|
activitywatch: {{ and $desktop (promptBool "activitywatch" false) }}
|
||||||
conky_alias: {{ if $desktop -}}{{ (promptString "conky" "none") }}{{ else }}none{{ end }}
|
conky_alias: {{ if $desktop -}}{{ (promptString "conky" "none") }}{{ else }}none{{ end }}
|
||||||
rofi_alias: {{ if $desktop -}}{{ (promptString "rofi-alias" "none") }}{{ else }}none{{ end }}
|
rofi_alias: {{ if $desktop -}}{{ (promptString "rofi-alias" "none") }}{{ else }}none{{ end }}
|
||||||
development:
|
development:
|
||||||
|
|
|
@ -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 &
|
|
@ -0,0 +1,5 @@
|
||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
# kill all activity-watch deamons
|
||||||
|
|
||||||
|
pkill aw-
|
|
@ -34,6 +34,9 @@ emacs-start &
|
||||||
{{ if .features.seafile -}}
|
{{ if .features.seafile -}}
|
||||||
seafile-applet > /dev/null 2>&1 &
|
seafile-applet > /dev/null 2>&1 &
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{ if .features.activitywatch -}}
|
||||||
|
aw-start > /dev/null 2>&1 &
|
||||||
|
{{- end }}
|
||||||
flameshot > /dev/null 2>&1 &
|
flameshot > /dev/null 2>&1 &
|
||||||
rofi-bw -d 3600 &
|
rofi-bw -d 3600 &
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue