Minimal GTK4 stopwatch for XFCE and other Linux desktops.
Tracks time with centisecond precision. Lives in your taskbar, stays out of your way.
| Key | Action |
|---|---|
Space |
Start / Stop |
Shift+C |
Reset |
Download the latest tarball from the Releases page.
tar -xzf tiktok-*-linux-x86_64.tar.gz
cd tiktok-*-linux-x86_64
sudo ./install.shTo remove it:
sudo rm /usr/local/bin/tiktok
sudo rm /usr/local/share/applications/tiktok.desktop
sudo rm /usr/local/share/icons/hicolor/scalable/apps/tiktok.svgDebian / Ubuntu / Mint / Pop!_OS
sudo apt install build-essential pkg-config libgtk-4-devFedora / RHEL
sudo dnf install gcc make pkg-config gtk4-develArch
sudo pacman -S base-devel pkg-config gtk4git clone https://github.com/grgorien/tiktok
cd tiktok
make release
sudo make installVerify it worked:
tiktok --versionsudo make uninstallmake # debug build with -g -O0 (runs as ./tiktok)
make debug # same as above, explicit
make release # optimised build with -O2 (runs as ./tiktok)
make clean # remove build artefactsThe default make produces a debug binary in the project directory, nothing is installed to your system. Use sudo make install when you want the binary available system-wide.
GTK4 is required. This will not build or run on GTK3.
