{"id":13765967,"url":"https://github.com/rpmfusion-infra/fedy","last_synced_at":"2026-04-18T05:05:38.754Z","repository":{"id":35490834,"uuid":"203756778","full_name":"rpmfusion-infra/fedy","owner":"rpmfusion-infra","description":"Fedy makes it easy to install third-party software in Fedora.","archived":false,"fork":false,"pushed_at":"2025-10-02T12:36:46.000Z","size":8598,"stargazers_count":206,"open_issues_count":26,"forks_count":19,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-10-13T07:13:11.615Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/rpmfusion-infra.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":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-08-22T09:05:58.000Z","updated_at":"2025-10-11T17:48:40.000Z","dependencies_parsed_at":"2024-03-04T09:26:43.389Z","dependency_job_id":"1c3be945-d58a-4520-b3e3-9979306888d9","html_url":"https://github.com/rpmfusion-infra/fedy","commit_stats":null,"previous_names":[],"tags_count":57,"template":false,"template_full_name":null,"purl":"pkg:github/rpmfusion-infra/fedy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpmfusion-infra%2Ffedy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpmfusion-infra%2Ffedy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpmfusion-infra%2Ffedy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpmfusion-infra%2Ffedy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rpmfusion-infra","download_url":"https://codeload.github.com/rpmfusion-infra/fedy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpmfusion-infra%2Ffedy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28432658,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2024-08-03T16:00:49.775Z","updated_at":"2026-01-14T19:38:00.284Z","avatar_url":"https://github.com/rpmfusion-infra.png","language":"Shell","funding_links":[],"categories":["Linux"],"sub_categories":["Red Hat/Fedora"],"readme":"# fedy\n\n[![Copr build status](https://copr.fedorainfracloud.org/coprs/kwizart/fedy/package/fedy/status_image/last_build.png)](https://copr.fedorainfracloud.org/coprs/kwizart/fedy/package/fedy/) | [![License](https://img.shields.io/badge/License-GPLv3-green)](https://img.shields.io/badge/License-GPLv3-green)\n\n![Screen](https://raw.githubusercontent.com/rpmfusion-infra/fedy/master/fedy-screenshot-0.png)\n\n### Introduction\n\nFedy lets you install multimedia codecs and additional software that Fedora [doesn't want to ship](https://docs.fedoraproject.org/en-US/legal/), like H264 support, google-chrome, pre-built applications from 3rd part vendors and much more with just a few clicks.\n\n### Installation\n\nInstallation instructions can be found on https://github.com/rpmfusion-infra/fedy.\n\n_Do not follow instructions from any other source!_\n\n```sh\n# RPM Fusion\nsudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm\n\n# Install fedy copr repository\nsudo dnf copr enable kwizart/fedy\n\n# Install fedy\nsudo dnf install fedy -y\n```\n\n\u003c!--\n\n```sh\n# For Enterprise Linux (RHEL, CentOS and derivates), the support is still experimental (please report issues)\n\n```\n\n--\u003e\n\n### Usage\n\nAfter installation, search for `Fedy` in the menu/overview or type `fedy` in the terminal.\n\n### Plugin structure\n\nPlugins can be placed under `~/.local/share/fedy/plugins/`, or the system plugins directory.\n\nEach plugin is a directory with the suffix `.plugin`, which consist of a JSON formatted metadata file. The metadata file contains information about the plugin and describes how `Fedy` should run the tasks.\n\nThe plugins can run any command or scripts (`bash`, `python` etc.). In addtion to the system commands, `Fedy` provides an additional command, `run-as-root` to allow running commands (e.g.- `run-as-root touch /some/file/somewhere`) or scripts (e.g.- `run-as-root -s do-stuff.sh`) as root.\n\nHave a look at the existing plugins to know more about how to write plugins for `Fedy`.\n\n### Source code\n\nSource code is publicly available on GitHub, and automatically cloned to GitLab:\n\n```sh\ngit clone https://github.com/rpmfusion-infra/fedy\n```\n\n### Bugs and feature requests\n\nPlease submit bugs and feature requests [here][fedy/issues]. Pull requests are\nalways welcome.\n\n[fedy/issues]: https://github.com/rpmfusion-infra/fedy/issues\n\n### License\n\nThis program is free software: you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free Software\nFoundation, either version 3 of the License, or (at your option) any later\nversion.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with\nthis program.  If not, see [gnu.org/licenses](http://www.gnu.org/licenses/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frpmfusion-infra%2Ffedy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frpmfusion-infra%2Ffedy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frpmfusion-infra%2Ffedy/lists"}