{"id":21566766,"url":"https://github.com/eliostvs/tomate-statusnotifieritem-plugin","last_synced_at":"2025-03-18T05:27:33.832Z","repository":{"id":77870578,"uuid":"465092631","full_name":"eliostvs/tomate-statusnotifieritem-plugin","owner":"eliostvs","description":" Show session progress on tray icon area.","archived":false,"fork":false,"pushed_at":"2024-01-05T18:09:02.000Z","size":59,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-24T12:13:58.770Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eliostvs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-01T23:43:35.000Z","updated_at":"2022-03-01T23:45:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"dafa2741-db95-429a-89fb-ff76ac60fbda","html_url":"https://github.com/eliostvs/tomate-statusnotifieritem-plugin","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliostvs%2Ftomate-statusnotifieritem-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliostvs%2Ftomate-statusnotifieritem-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliostvs%2Ftomate-statusnotifieritem-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eliostvs%2Ftomate-statusnotifieritem-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eliostvs","download_url":"https://codeload.github.com/eliostvs/tomate-statusnotifieritem-plugin/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244162471,"owners_count":20408532,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-24T10:28:07.286Z","updated_at":"2025-03-18T05:27:33.810Z","avatar_url":"https://github.com/eliostvs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tomate StatusNotifierItem Plugin\n\nShow session progress on tray icon area.\n\n## Installation\n\n### Ubuntu 20.04+\n\nIf you have installed the program using the **old ppa repository** uninstall the old version first.\nIf you use an Ubuntu-based distro, such as Mint, manually set the **RELEASE** variable to the Ubuntu version number, such as 16.04, rather than running the sed script bellow.\n\n    RELEASE=`sed -n 's/VERSION_ID=\"\\(.*\\)\"/\\1/p' /etc/os-release`\n    sudo wget -O- http://download.opensuse.org/repositories/home:/eliostvs:/tomate/xUbuntu_$RELEASE/Release.key | sudo apt-key add -\n    sudo bash -c \"echo 'deb http://download.opensuse.org/repositories/home:/eliostvs:/tomate/xUbuntu_$RELEASE/ ./' \u003e /etc/apt/sources.list.d/tomate.list\"\n    sudo apt-get update \u0026\u0026 sudo apt-get install tomate-statusnotifieritem-plugin\n\n### Debian 10+\n\n    RELEASE=`sed -n 's/VERSION_ID=\"\\(.*\\)\"/\\1\\.0/p' /etc/os-release`\n    sudo wget -O- http://download.opensuse.org/repositories/home:/eliostvs:/tomate/Debian_$RELEASE/Release.key | sudo apt-key add -\n    sudo bash -c \"echo 'deb http://download.opensuse.org/repositories/home:/eliostvs:/tomate/Debian_$RELEASE/ ./' \u003e /etc/apt/sources.list.d/tomate.list\"\n    sudo apt-get update \u0026\u0026 sudo apt-get install tomate-statusnotifieritem-plugin\n\n### Opensuse Tumbleweed\n\n    sudo zypper ar -f http://download.opensuse.org/repositories/home:/eliostvs:/tomate/openSUSE_Tumbleweed/home:eliostvs:tomate.repo\n    sudo zypper install tomate-statusnotifieritem-plugin\n\n### Fedora 32+\n\n    RELEASE=`cat /etc/fedora-release | grep -o '[0-9][0-9]*'`\n    sudo dnf config-manager --add-repo http://download.opensuse.org/repositories/home:/eliostvs:/tomate/Fedora_$RELEASE/home:eliostvs:tomate.repo\n    sudo dnf install tomate-statusnotifieritem-plugin\n\n### Arch\n\nThe packages are available in [aur repository](https://aur.archlinux.org/packages/tomate-gtk/)\n\n## Development\n\nInstall the following native dependencies in you system:\n\n- Python3\n- pip\n- make \n- git \n- git-flow\n- tomate/tomate-gtk\n\nInstall the Python development dependencies:\n\n```bash\npip install --user black bumpversion copier pytest pytest-cov pytest-flake8 pytest-mock pre-commit\n```\n\nCreate the plugin project:\n\n```bash\ncopier gh:eliostvs/tomate-plugin-template path/to/plugin/project`\n```\n\n### Media Files\n\nIf this plugin uses media files (icons, mp3, etc), copy them to the **data** directory in root of the repository.\n\n### Testing\n\nPersonalize the .pre-commit-config.yaml\n\nFormat the files using [black](https://pypi.org/project/black/):\n\n```bash\nmake format\n```\n\nRun test in your local environment:\n\n```bash\nmake test\n```\n\nRun test inside the docker:\n\n```bash\nmake docker-test\n```\n\nTest manually the plugin:\n\n```bash\nln -s ~/.local/share/tomate/plugins path/to/plugin/project/data/plugins\ntomate-gtk -v\n```\n\nThen activate the plugin through the settings.\n\n### Release\n\nUpdate the *[Unrelease]* section in the CHANGELOG.md file then:\n\n`make release-[patch|minor|major]`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feliostvs%2Ftomate-statusnotifieritem-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feliostvs%2Ftomate-statusnotifieritem-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feliostvs%2Ftomate-statusnotifieritem-plugin/lists"}