{"id":18332036,"url":"https://github.com/mrousavy/gimp-rpc","last_synced_at":"2025-08-10T08:49:31.561Z","repository":{"id":78946214,"uuid":"177584856","full_name":"mrousavy/gimp-rpc","owner":"mrousavy","description":"A GIMP plugin to display Discord Rich Presence made with C","archived":false,"fork":false,"pushed_at":"2020-04-29T16:22:10.000Z","size":582,"stargazers_count":14,"open_issues_count":5,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-06T03:33:31.499Z","etag":null,"topics":["addon","c","discord","extension","gimp","plugin","presence","rich","rpc"],"latest_commit_sha":null,"homepage":null,"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/mrousavy.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":"2019-03-25T12:45:55.000Z","updated_at":"2025-01-06T18:02:07.000Z","dependencies_parsed_at":"2023-02-24T23:00:19.775Z","dependency_job_id":null,"html_url":"https://github.com/mrousavy/gimp-rpc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mrousavy/gimp-rpc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrousavy%2Fgimp-rpc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrousavy%2Fgimp-rpc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrousavy%2Fgimp-rpc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrousavy%2Fgimp-rpc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrousavy","download_url":"https://codeload.github.com/mrousavy/gimp-rpc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrousavy%2Fgimp-rpc/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269699465,"owners_count":24461213,"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-10T02:00:08.965Z","response_time":71,"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":["addon","c","discord","extension","gimp","plugin","presence","rich","rpc"],"created_at":"2024-11-05T19:37:02.627Z","updated_at":"2025-08-10T08:49:31.516Z","avatar_url":"https://github.com/mrousavy.png","language":"C","funding_links":["https://ko-fi.com/F1F8CLXG'"],"categories":[],"sub_categories":[],"readme":"| README.md |\n|:---|\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"img/gimp.png\" height=\"120\" /\u003e\n  \u003ch3 align=\"center\"\u003egimp-rpc\u003c/h3\u003e\n\u003c/p\u003e\n\n### Features\n\n\u003cp align=\"center\"\u003e\n  \u003ckbd\u003e\n    \u003cimg src=\"img/demo.png\" height=\"250\" /\u003e\n  \u003c/kbd\u003e\n\u003c/p\u003e\n\n* Displays GIMP name and icon\n* Displays currently selected tool\n* Displays currently opened file\n* Displays elapsed time in file\n\n### Install\n\n```sh\ngit clone https://github.com/mrousavy/gimp-rpc.git\ngimptool-2.0 --install-admin gimp-rpc/plugin.c\n```\n\n\u003e (Installer script coming soon)\n\n\u003cdetails\u003e\n  \u003csummary\u003e\n    \u003cb\u003eContribute\u003c/b\u003e\n  \u003c/summary\u003e\n\n1. Clone `gimp-rpc`\n\n    ```sh\n    git clone https://github.com/mrousavy/gimp-rpc.git\n    cd gimp-rpc\n    git submodule update --init --recursive\n    ```\n\n2. Build libraries\n\n    * `gimp`\n\n      ```sh\n      cd gimp\n      export INSTALL_PREFIX=$HOME/dev/gimp-prefix/\n      export SRC_DIR=/vol/scratch/gimp-beta/src\n      mkdir -p $INSTALL_PREFIX\n      mkdir -p $SRC_DIR\n      export PATH=$INSTALL_PREFIX/bin:$PATH\n      export PKG_CONFIG_PATH=$INSTALL_PREFIX/lib/pkgconfig:$PKG_CONFIG_PATH\n      export LD_LIBRARY_PATH=$INSTALL_PREFIX/lib:$LD_LIBRARY_PATH\n      ./configure --prefix=$INSTALL_PREFIX\n      ./autogen.sh --prefix=$INSTALL_PREFIX --disable-gtk-doc\n      make\n      make install\n      ```\n\n    * `discord-rpc`\n\n      ```sh\n      cd discord-rpc\n      mkdir build\n      cd build\n      cmake .. -DCMAKE_INSTALL_PREFIX=\u003cpath to install discord-rpc to\u003e\n      cmake --build . --config Release --target install\n      ```\n\n3. Make changes to `gimp-rpc`\n\n    The main plugin logic is programmed in the `plugin.c` file. Change as desired.\n\n4. Build `gimp-rpc`\n\n    ```sh\n    gimptool-2.0 --install-admin plugin.c\n    ```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003e\n    \u003cb\u003eCredits\u003c/b\u003e\n  \u003c/summary\u003e\n  \u003cul\u003e\n    \u003cli\u003e\u003ca href=\"https://github.com/discordapp/discord-rpc\"\u003ediscord-rpc\u003c/a\u003e\u003c/li\u003e\n    \u003cli\u003e\u003ca href=\"https://github.com/GNOME/gimp\"\u003elibgimp\u003c/a\u003e\u003c/li\u003e\n  \u003c/ul\u003e\n\u003c/details\u003e\n\n\u003ca href='https://ko-fi.com/F1F8CLXG' target='_blank'\u003e\u003cimg height='36' style='border:0px;height:36px;' src='https://az743702.vo.msecnd.net/cdn/kofi2.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' /\u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrousavy%2Fgimp-rpc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrousavy%2Fgimp-rpc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrousavy%2Fgimp-rpc/lists"}