You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-10Lines changed: 7 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,6 @@
7
7
8
8
A process activity tracker, it runs as a background service recording start/stop events for select programs and aggregates active sessions, session history, and lifetime program usage. Now has [WakaTime](https://github.com/jms-guy/timekeep?tab=readme-ov-file#wakatime) integration.
9
9
10
-
2025/10/15 -- **Linux version currently not working**
11
-
12
10
## Table of Contents
13
11
-[Features](#features)
14
12
-[How It Works](#how-it-works)
@@ -84,7 +82,7 @@ GOOS=windows go build -o timekeep-service.exe ./cmd/service
84
82
GOOS=windows go build -o timekeep.exe ./cmd/cli
85
83
86
84
# Install and start service (Run as Administrator)
87
-
sc.exe create timekeep binPath= "C:\Program Files\Timekeep\timekeep-service.exe" start= auto # Assuming this is the location of service binary
85
+
sc.exe create timekeep binPath= "Path to timekeep-service.exe binary" start= auto
sudo tee /etc/systemd/system/timekeep.service > /dev/null <<EOF
133
126
[Unit]
@@ -137,7 +130,11 @@ After=network.target
137
130
[Service]
138
131
Type=simple
139
132
ExecStart=/usr/local/bin/timekeepd
133
+
StandardOutput=journal
134
+
StandardError=journal
135
+
KillMode=process
140
136
Restart=always
137
+
RestartSec=2s
141
138
User=$USER_NAME
142
139
Group=$GROUP_NAME
143
140
@@ -184,7 +181,7 @@ To enable WakaTime integration, users must:
184
181
185
182
Enable integration through timekeep. Set your WakaTime API key and wakatime-cli path either directly in the Timekeep [config](https://github.com/jms-guy/timekeep?tab=readme-ov-file#file-locations) file, or provide them through flags:
0 commit comments