gitextract_uleu2or6/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report-or-feature-request.md │ │ └── config.yml │ └── workflows/ │ ├── build-linux.yml │ └── build-nix.yaml ├── .gitignore ├── LICENSE ├── README.md ├── auto-cpufreq-installer ├── auto-cpufreq.conf-example ├── auto-cpufreq.conf-example.nix ├── auto_cpufreq/ │ ├── battery_scripts/ │ │ ├── asus.py │ │ ├── battery.py │ │ ├── ideapad_laptop.py │ │ └── shared.py │ ├── bin/ │ │ ├── auto_cpufreq.py │ │ └── auto_cpufreq_gtk.py │ ├── config/ │ │ ├── config.py │ │ └── config_event_handler.py │ ├── core.py │ ├── globals.py │ ├── gui/ │ │ ├── app.py │ │ ├── objects.py │ │ └── tray.py │ ├── modules/ │ │ ├── system_info.py │ │ └── system_monitor.py │ ├── power_helper.py │ └── tlp_stat_parser.py ├── flake.nix ├── nix/ │ ├── default.nix │ ├── module.nix │ ├── patches/ │ │ └── prevent-install-and-copy.patch │ └── shell.nix ├── pyproject.toml ├── scripts/ │ ├── auto-cpufreq-dinit │ ├── auto-cpufreq-gtk.desktop │ ├── auto-cpufreq-install.sh │ ├── auto-cpufreq-openrc │ ├── auto-cpufreq-remove.sh │ ├── auto-cpufreq-runit │ ├── auto-cpufreq-s6/ │ │ ├── run │ │ └── type │ ├── auto-cpufreq-venv-wrapper │ ├── auto-cpufreq.service │ ├── cpufreqctl.sh │ ├── org.auto-cpufreq.pkexec.policy │ ├── snapdaemon.sh │ ├── start_app │ └── style.css └── snap/ ├── gui/ │ └── auto-cpufreq_auto-cpufreq.desktop └── snapcraft.yaml