{"id":17383190,"url":"https://github.com/jothi-prasath/auto-epp","last_synced_at":"2025-04-15T09:52:33.106Z","repository":{"id":187924079,"uuid":"677817376","full_name":"jothi-prasath/auto-epp","owner":"jothi-prasath","description":"auto-epp is a python script that manages the energy performance preferences (EPP) of amd-pstate-epp","archived":false,"fork":false,"pushed_at":"2024-03-14T19:58:36.000Z","size":31,"stargazers_count":92,"open_issues_count":3,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-28T19:07:11.533Z","etag":null,"topics":["amd-pstate","cpufreq","hacktoberfest","linux","python","shellscript"],"latest_commit_sha":null,"homepage":"","language":"Python","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/jothi-prasath.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"jothi-prasath"}},"created_at":"2023-08-12T18:24:53.000Z","updated_at":"2025-03-05T04:26:15.000Z","dependencies_parsed_at":"2024-10-16T07:40:57.763Z","dependency_job_id":null,"html_url":"https://github.com/jothi-prasath/auto-epp","commit_stats":null,"previous_names":["jothi-prasath/auto-epp"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jothi-prasath%2Fauto-epp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jothi-prasath%2Fauto-epp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jothi-prasath%2Fauto-epp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jothi-prasath%2Fauto-epp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jothi-prasath","download_url":"https://codeload.github.com/jothi-prasath/auto-epp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249048712,"owners_count":21204305,"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":["amd-pstate","cpufreq","hacktoberfest","linux","python","shellscript"],"created_at":"2024-10-16T07:40:53.365Z","updated_at":"2025-04-15T09:52:33.086Z","avatar_url":"https://github.com/jothi-prasath.png","language":"Python","funding_links":["https://github.com/sponsors/jothi-prasath"],"categories":[],"sub_categories":[],"readme":"# auto-epp\n[![auto-epp](https://img.shields.io/aur/version/auto-epp?color=1793d1\u0026label=auto-epp\u0026logo=arch-linux\u0026style=for-the-badge)](https://aur.archlinux.org/packages/auto-epp/)\n\n**auto-epp** is a python script that manages the energy performance preferences (EPP) of your AMD CPU using the AMD-Pstate driver. It adjusts the EPP settings based on whether your system is running on AC power or battery power, helping optimize power consumption and performance.\n\n## Index\n\n- [Requirements](#requirements)\n- [Enable amd-pstate-epp](#to-enable-amd-pstate-epp)\n- [Quick Install](#quick-install)\n  - [For Archlinux](#for-arch-linux)\n- [Manual Install](#manual-install)\n- [Usage](#usage)\n- [Uninstall](#uninstall)\n\n## Requirements\n\n- AMD CPU with the AMD-Pstate-EPP driver enabled.\n- Python 3.x\n\n## To enable amd-pstate-epp\n\nThis can be done by editing the `GRUB_CMDLINE_LINUX_DEFAULT` params in `/etc/default/grub`. Follow these steps:\n\n1. Open the grub file using the following command:\n```bash\nsudo nano /etc/default/grub\n```\n2. Within the file, modify the `GRUB_CMDLINE_LINUX_DEFAULT` line to include the setting for AMD P-State EPP:\n```bash\nGRUB_CMDLINE_LINUX_DEFAULT=\"quiet splash amd_pstate=active\"\n```\n\n## Quick Install\n\nTo quickly install auto-epp, just copy and paste this to your terminal (if you have curl installed):\n```bash\ncurl https://raw.githubusercontent.com/jothi-prasath/auto-epp/master/quick-install.sh | sudo bash\n```\n### For Arch Linux\n\nOn Arch Linux, and Arch-based distributions, auto-epp can be found in the AUR. Install with an AUR helper like yay:\n```bash\nyay auto-epp\n```\n\n### For NixOS\n\nOn NixOS (unstable for now) an option can be enabled to install and enable auto-epp.\n\nTo enable with the default configuration:\n\n```nix\nservices.auto-epp.enable = true;\n```\n\nDetailed options available on [nixos.org](https://search.nixos.org/options?channel=unstable\u0026from=0\u0026size=50\u0026sort=relevance\u0026type=packages\u0026query=auto-epp)\n\n## Manual Install\n\n```bash\ngit clone https://github.com/jothi-prasath/auto-epp\ncd auto-epp\nchmod +x ./install.sh\nsudo ./install.sh\n```\n\n## Usage\n\nMonitor the service status\n```bash\nsystemctl status auto-epp\n```\n\nTo restart the service\n```bash\nsudo systemctl restart auto-epp\n```\n\nEdit the config file\n```bash\nsudo nano /etc/auto-epp.conf\n```\n\n# uninstall\n\nTo uninstall auto-epp\n```bash\nchmod +x ./uninstall.sh\nsudo ./uninstall.sh\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjothi-prasath%2Fauto-epp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjothi-prasath%2Fauto-epp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjothi-prasath%2Fauto-epp/lists"}