Skip to content

Release v0.6.0

Compare
Choose a tag to compare
@dennis-tra dennis-tra released this 07 Nov 20:20
· 97 commits to main since this release
f9ffd19

System Tray Application

Screenshot 2022-11-07 at 9 01 07 PM

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