{"id":23541908,"url":"https://github.com/h2337/connmap","last_synced_at":"2025-08-13T06:41:43.300Z","repository":{"id":47570978,"uuid":"248809670","full_name":"h2337/connmap","owner":"h2337","description":"connmap is an X11 desktop widget that shows location of your current network peers on a world map in real-time","archived":false,"fork":false,"pushed_at":"2025-08-02T15:49:48.000Z","size":36576,"stargazers_count":573,"open_issues_count":10,"forks_count":25,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-08-04T08:58:44.110Z","etag":null,"topics":["cairo","desktop-widget","geolocation","i3","i3wm","ip-geolocation","libcairo","linux-desktop","tcp","udp","x11"],"latest_commit_sha":null,"homepage":"","language":"C","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/h2337.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":"2020-03-20T17:04:22.000Z","updated_at":"2025-08-04T06:42:23.000Z","dependencies_parsed_at":"2024-12-18T20:42:52.583Z","dependency_job_id":null,"html_url":"https://github.com/h2337/connmap","commit_stats":null,"previous_names":["h2337/connmap","jafarlihi/connmap","hikmat2337/connmap"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/h2337/connmap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h2337%2Fconnmap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h2337%2Fconnmap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h2337%2Fconnmap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h2337%2Fconnmap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/h2337","download_url":"https://codeload.github.com/h2337/connmap/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/h2337%2Fconnmap/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270197927,"owners_count":24543466,"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","status":"online","status_checked_at":"2025-08-13T02:00:09.904Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cairo","desktop-widget","geolocation","i3","i3wm","ip-geolocation","libcairo","linux-desktop","tcp","udp","x11"],"created_at":"2024-12-26T06:00:55.298Z","updated_at":"2025-08-13T06:41:43.274Z","avatar_url":"https://github.com/h2337.png","language":"C","funding_links":[],"categories":["C"],"sub_categories":[],"readme":"\u003cimg align=\"right\" src=\"https://raw.githubusercontent.com/h2337/connmap/refs/heads/master/logo.svg\"\u003e\n\n# connmap\nconnmap is an X11 desktop widget that shows location of your current network peers on a world map.\n(Works on Wayland as well!)\n\n\u003cp align=\"center\"\u003e \n  \u003cimg src=\"https://raw.githubusercontent.com/h2337/connmap/refs/heads/master/sample.png\"\u003e\n\u003c/p\u003e\n\n## Installation\nClone the repository `git clone https://github.com/h2337/connmap --depth 1`, install the dependencies (see below), run `make install`, then run the resulting executable `./connmap.elf`.\n\nIf you want to run it without attaching it to the terminal then add ampersand at the end of the command: `./connmal.elf \u0026`.\n\nYou can also add it to your i3wm config to run at startup (make sure it is in the PATH):\n```\nexec --no-startup-id connmap.elf\n```\n\n## Dependencies\nBuild dependencies: `xlib`, `libxext`, `libxfixes`, `libcairo2`\n\nInstallation dependencies: `unzip`\n\nRuntime dependencies: `iproute2`\n\nInstallation for Arch Linux:\n```\nsudo pacman -S --needed iproute2 libx11 libxext libxfixes cairo unzip\n```\n\nInstallation for Debian/Ubuntu:\n```\nsudo apt install iproute2 libx11-dev libxext-dev libxfixes-dev libcairo2-dev unzip\n```\n\n## Config\nInstallation will create `~/.config/connmap/connmaprc`. Default `connmaprc` looks like this:\n```\nlocation_x 20\nlocation_y 500\nmap_width 1000\nblack false\nupdate_interval 1\n```\n- `location_x`/`location_y` specifies the initial widget location in your desktop (you can later drag/drop the widget with mouse if you are not using a desktop environment that treats mouse drag as multi-select).\n\n- `map_width` specifies the custom pixel width of the map. Height is automatically calculated as width/2. Examples:\n  - `map_width 500` creates a 500×250px map\n  - `map_width 1000` creates a 1000×500px map\n  - `map_width 1500` creates a 1500×750px map\n  - `map_width 2000` creates a 2000×1000px map\n\n- Setting `black` to true will draw map outline in black instead of white.\n\n- `update_interval` is seconds the application will sleep for before fetching the updated list of network connections.\n## Limitations\n- Tested only with i3wm, might not work as expected in other DE/WM.\n\n- Only IPv4 is supported.\n\n## License\nMIT-licensed.\n\nThis product includes GeoLite2 Data created by MaxMind, available from https://www.maxmind.com\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fh2337%2Fconnmap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fh2337%2Fconnmap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fh2337%2Fconnmap/lists"}