{"id":23293650,"url":"https://github.com/scqcasc/repowatcher","last_synced_at":"2026-05-04T21:31:50.658Z","repository":{"id":267191323,"uuid":"900086823","full_name":"scqcasc/repowatcher","owner":"scqcasc","description":"A git repository overview manager","archived":false,"fork":false,"pushed_at":"2024-12-17T02:14:21.000Z","size":17229,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-03T13:53:32.056Z","etag":null,"topics":["git","golang","hyprland","lazygit","linux","waybar","workflow"],"latest_commit_sha":null,"homepage":"https://github.com/scqasc/repowatcher","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scqcasc.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-07T20:33:06.000Z","updated_at":"2024-12-15T15:35:53.000Z","dependencies_parsed_at":"2024-12-09T00:19:59.208Z","dependency_job_id":"c6aa7410-08f5-47e5-aabb-1dc0b8902023","html_url":"https://github.com/scqcasc/repowatcher","commit_stats":null,"previous_names":["scqcasc/repowatcher"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/scqcasc/repowatcher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scqcasc%2Frepowatcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scqcasc%2Frepowatcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scqcasc%2Frepowatcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scqcasc%2Frepowatcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scqcasc","download_url":"https://codeload.github.com/scqcasc/repowatcher/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scqcasc%2Frepowatcher/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32625936,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["git","golang","hyprland","lazygit","linux","waybar","workflow"],"created_at":"2024-12-20T06:16:25.494Z","updated_at":"2026-05-04T21:31:50.639Z","avatar_url":"https://github.com/scqcasc.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Repowatcher\nA Tool written in Golang that displays the status of your local repos in Waybar.  At a glance you can see if any of your repositories\nneed updated or pushed.\n\nWhen you click the Repos lable it opens a Rofi window allowing you to select the repo you want to update.\n\nThis was developed and tested in Fedora Workstation 41 using Hyprland.\n\nThis can run in a daemon mode, but for Waybar you can run it with the --once flag to have Waybar manage the re-runs.\n\n## Installation\n\n### Requirements\n* [Golang \u003e= 1.23.3](https://go.dev/)\n* Git\n* [Waybar \u003e= 0.11](https://github.com/Alexays/Waybar)\n* [Rofi \u003e= 1.7.5](https://github.com/davatorium/rofi)\n* [Lazygit](https://github.com/jesseduffield/lazygit)\n\n### Building\n\nBuild the binary with these steps:\n\n```\ngit clone https://github.com/scqcasc/repowatcher.git\ncd repowatcher\ngo build\nmkdir -p ~/.local/share/repowatcher\ncp sample.config.json ~/.local/share/repowatcher/config.json\ncp repowatcher.theme ~/.local/share/repowatcher/repowatcher.theme\ncp repowatcher ~/.local/bin/repowatcher\ncp repowatcher-handler ~/.local/bin/repowatcher-handler\n```\n\n\n\n### Configuration\nUpdate ~/.local/share/repowatcher/config.json.\n\nThe config structure is\n```\n{\n  \"repositories\": [\n    {\n      \"name\": \"Some_Name\",\n      \"location\": \"/the/path/to/Some_Name\"\n    }\n  ],\n  \"poll_interval\": 10\n}\n```\n\nUpdate your waybar config\n\n* Add the repowatcher module\n```\n\"custom/git-repowatcher\": {\n        \"exec\": \"~/.local/bin/repowatcher -once\",\n        \"interval\": 10,\n        \"tooltip\": true,\n        \"return-type\": \"json\",\n        \"format\": \"Repos\",\n        \"on-click\": \"~/.local/bin/repowatcher-handler\"\n    },\n```\nAdd the module somewhere in your Waybar:\n\n```\n\"modules-right\": [\"custom/spotify\", \"custom/git-repowatcher\",  \"custom/weather\",  \"network\", \"cpu\", \"tray\", \"clock\",\"pulseaudio\",\"battery\", \"custom/power\"],\n```\n\n* Add css styling:\n```\n#custom-git-repowatcher {\n    color: green; /* Default to green */\n}\n#custom-git-repowatcher.red {\n    color: red;\n}\n#custom-git-repowatcher.yellow {\n    color: yellow;\n}\n```\n\nInform waybar about it's new configuration:\n```\nkillall -SIGUSR2 waybar\n```\n\n## Let's See it in Action\n(smaller video coming soon ...)\n[![Repowatch in action]({https://github.com/scqcasc/repowatcher/blob/main/repowatcher.mp4)}]({https://github.com/scqcasc/repowatcher/blob/main/repowatcher.mp4} \"Repowatch\")\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscqcasc%2Frepowatcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscqcasc%2Frepowatcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscqcasc%2Frepowatcher/lists"}