Release v0.6.0
System Tray Application
MacOS
Download the punchr-gui-darwin-amd64.dmg
or punchr-gui-darwin-arm64.dmg
.
Linux
Depending on your platform download punchr-gui-linux-{amd64,386}.tar.xz
. In the case of amd64
run the following command to install the application:
tar -xf punchr-gui-linux-amd64.tar.xz && make user-install
CLI Application
The system tray app is just a wrapper around the CLI application. You can find all the download links below and install it manually. Consider configuring a systemd service to have it running continuously and to allow autostarting. Like this:
# E.g. file at: /etc/systemd/system/punchr-client.service
[Unit]
Description=Punchr Client
After=network.target
[Service]
User=ubuntu # your user
WorkingDirectory=/home/ubuntu
ExecStart=/home/ubuntu/punchr_cli_linux_amd64 --api-key <API_KEY>
Restart=always
[Install]
WantedBy=multiuser.target