BUILD instructions (please open terminal and install this in one go not leaving the terminal (unless You know what to do))!

    # set version
    Fedora / openSUSE:
        export TNVER="0.4.1"

    # install build tools
    Fedora:
        sudo dnf install rpmdevtools
    openSUSE:
        sudo zypper install rpmdevtools rpm-build

    # this sets up build tree (rpmbuild dir in home directory)
    Fedora / openSUSE:
        rpmdev-setuptree

    # get the timekpr sources
    Fedora / openSUSE:
        wget https://launchpad.net/timekpr-next/stable/${TNVER}/+download/timekpr-next-${TNVER}.tar.gz -P $HOME/rpmbuild/SOURCES/

    # got to source directory and get the spec file
    Fedora / openSUSE:
        cd $HOME/rpmbuild/SPECS/
        tar xzf $HOME/rpmbuild/SOURCES/timekpr-next-${TNVER}.tar.gz --strip-components=2 timekpr-next/spec/timekpr-next.spec

    # install build dependencies
    Fedora:
        sudo dnf builddep timekpr-next.spec
        sudo dnf install libappindicator-gtk3 python3-psutil
    openSUSE:
        sudo zypper install python3 desktop-file-utils appstream-glib systemd sed grep gtk3 python3-dbus-python python3-gobject python3-psutil libindicator3-7 gettext typelib-1_0-Gtk-3_0 typelib-1_0-AppIndicator3-0_1

    # build binary package
    Fedora / openSUSE:
        rpmbuild -bb timekpr-next.spec

    # install needs to be adjusted to correct version of distro (example given for FC32)
    # if installation complains about conflicts with existing package, please remove the old version of package
    # and then install new one or use --force at the end of the command
    Fedora / openSUSE:
        sudo rpm -Uhv $HOME/rpmbuild/RPMS/$(arch)/timekpr-next-${TNVER}-4.0*.x86_64.rpm

    # if You are using G3, please DO NOT forget to install this (otherwise icon will be hidden)
    Fedora:
        sudo dnf install gnome-shell-extension-appindicator
    openSUSE:
        install "KStatusNotifierItem/AppIndicator Support" extension manually from https://extensions.gnome.org/

    # enable extensions if needed (for Fedora install Gnome Tweaks application and enable said extension)
    # let the user log out and in to see the timekpr-nExT in action
