Skip to content

Instantly share code, notes, and snippets.

@Daniel-M
Last active March 18, 2019 23:31
Show Gist options
  • Save Daniel-M/a773aa7b75c4f08cd760fe44f36285aa to your computer and use it in GitHub Desktop.
Save Daniel-M/a773aa7b75c4f08cd760fe44f36285aa to your computer and use it in GitHub Desktop.
Build the toggle desktop for Linux Debian https://www.toggl.com/
# Install the pre-requisites for the application
apt install qtwebengine5-dev libqt5x11extras5-dev libqtexengine-dev qtbase5-dev qtbase5-private-dev libssl-dev libxss-dev
git clone git@github.com:toggl/toggldesktop.git
cd toggldesktop
mkdir build
cd build
git checkout v7.4.377
cmake -DTOGGL_PRODUCTION_BUILD=ON ..
make -j5
sudo make install
## Now you can either edit /etc/profiles and add the line
export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
# Or edit /usr/local/bin/TogglDesktop.sh and add it at the beggining of the file
# and run ToggleDesktop by calling ToggleDesktop.sh
@Daniel-M
Copy link
Author

How I managed to make the Toggle Desktop client to work with Debian Testing (as of March 18, 2019) https://www.toggl.com/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment