├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ └── laptop-mode-tools-bug-report.md ├── .gitignore ├── COPYING ├── Documentation ├── laptop-mode.txt ├── readme-debugging.txt └── revision-history.txt ├── Makefile ├── README.Board-Specific ├── README.md ├── etc ├── acpi │ ├── actions │ │ ├── lm_ac_adapter.sh │ │ ├── lm_battery.sh │ │ └── lm_lid.sh │ └── events │ │ ├── lm_ac_adapter │ │ ├── lm_battery │ │ └── lm_lid ├── apm │ └── event.d │ │ └── laptop-mode ├── init.d │ └── laptop-mode ├── laptop-mode │ ├── conf.d │ │ ├── ac97-powersave.conf │ │ ├── auto-hibernate.conf │ │ ├── battery-level-polling.conf │ │ ├── bluetooth.conf │ │ ├── configuration-file-control.conf │ │ ├── cpufreq.conf │ │ ├── cpuhotplug.conf │ │ ├── dpms-standby.conf │ │ ├── eee-superhe.conf │ │ ├── ethernet.conf │ │ ├── exec-commands.conf │ │ ├── hal-polling.conf │ │ ├── intel-hda-powersave.conf │ │ ├── intel-sata-powermgmt.conf │ │ ├── intel_pstate.conf │ │ ├── kbd-backlight.conf │ │ ├── lcd-brightness.conf │ │ ├── nmi-watchdog.conf │ │ ├── nouveau.conf │ │ ├── pcie-aspm.conf │ │ ├── radeon-dpm.conf │ │ ├── runtime-pm.conf │ │ ├── sched-mc-power-savings.conf │ │ ├── sched-smt-power-savings.conf │ │ ├── start-stop-programs.conf │ │ ├── terminal-blanking.conf │ │ ├── vgaswitcheroo.conf │ │ ├── video-out.conf │ │ ├── wireless-ipw-power.conf │ │ ├── wireless-iwl-power.conf │ │ └── wireless-power.conf │ ├── laptop-mode.conf │ └── lm-profiler.conf ├── power │ ├── event.d │ │ └── laptop-mode │ └── scripts.d │ │ └── laptop-mode ├── rules │ ├── 99-laptop-mode.rules │ └── lmt-udev └── systemd │ ├── laptop-mode.conf.tmpfiles │ ├── laptop-mode.service │ ├── laptop-mode.timer │ └── lmt-poll.service ├── gui ├── laptop-mode-tools.desktop ├── laptop-mode-tools.svg ├── lmt-config-gui ├── lmt-config-gui-pkexec └── lmt.py ├── install.sh ├── laptop-mode-tools.spec ├── man ├── laptop-mode.conf.8 ├── laptop_mode.8 ├── lm-profiler.8 ├── lm-profiler.conf.8 └── lm-syslog-setup.8 ├── release-checklist └── usr ├── lib └── pm-utils │ └── sleep.d │ └── 01laptop-mode ├── sbin ├── laptop_mode ├── lm-profiler └── lm-syslog-setup └── share ├── laptop-mode-tools ├── locale │ ├── zh_CN.qm │ └── zh_CN.ts ├── module-helpers │ ├── lm-polling-daemon │ ├── pm-freeze │ ├── pm-helper │ ├── pm-hibernate │ └── pm-suspend └── modules │ ├── ac97-powersave │ ├── battery-level-polling │ ├── bluetooth │ ├── configuration-file-control │ ├── cpufreq │ ├── cpuhotplug │ ├── dpms-standby │ ├── eee-superhe │ ├── ethernet │ ├── exec-commands │ ├── hal-polling │ ├── hdparm │ ├── intel-hda-powersave │ ├── intel-sata-powermgmt │ ├── intel_pstate │ ├── kbd-backlight │ ├── laptop-mode │ ├── lcd-brightness │ ├── nmi-watchdog │ ├── nouveau │ ├── pcie-aspm │ ├── radeon-dpm │ ├── runtime-pm │ ├── sched-mc-power-savings │ ├── sched-smt-power-savings │ ├── start-stop-programs │ ├── syslog-conf │ ├── terminal-blanking │ ├── vgaswitcheroo │ ├── video-out │ ├── wireless-ipw-power │ ├── wireless-iwl-power │ └── wireless-power └── polkit-1 └── actions └── org.linux.lmt.gui.policy /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [rickysarraf] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/laptop-mode-tools-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/.github/ISSUE_TEMPLATE/laptop-mode-tools-bug-report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/COPYING -------------------------------------------------------------------------------- /Documentation/laptop-mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/Documentation/laptop-mode.txt -------------------------------------------------------------------------------- /Documentation/readme-debugging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/Documentation/readme-debugging.txt -------------------------------------------------------------------------------- /Documentation/revision-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/Documentation/revision-history.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.Board-Specific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/README.Board-Specific -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/README.md -------------------------------------------------------------------------------- /etc/acpi/actions/lm_ac_adapter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/acpi/actions/lm_ac_adapter.sh -------------------------------------------------------------------------------- /etc/acpi/actions/lm_battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/acpi/actions/lm_battery.sh -------------------------------------------------------------------------------- /etc/acpi/actions/lm_lid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/acpi/actions/lm_lid.sh -------------------------------------------------------------------------------- /etc/acpi/events/lm_ac_adapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/acpi/events/lm_ac_adapter -------------------------------------------------------------------------------- /etc/acpi/events/lm_battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/acpi/events/lm_battery -------------------------------------------------------------------------------- /etc/acpi/events/lm_lid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/acpi/events/lm_lid -------------------------------------------------------------------------------- /etc/apm/event.d/laptop-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/apm/event.d/laptop-mode -------------------------------------------------------------------------------- /etc/init.d/laptop-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/init.d/laptop-mode -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/ac97-powersave.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/ac97-powersave.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/auto-hibernate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/auto-hibernate.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/battery-level-polling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/battery-level-polling.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/bluetooth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/bluetooth.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/configuration-file-control.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/configuration-file-control.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/cpufreq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/cpufreq.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/cpuhotplug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/cpuhotplug.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/dpms-standby.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/dpms-standby.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/eee-superhe.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/eee-superhe.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/ethernet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/ethernet.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/exec-commands.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/exec-commands.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/hal-polling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/hal-polling.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/intel-hda-powersave.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/intel-hda-powersave.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/intel-sata-powermgmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/intel-sata-powermgmt.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/intel_pstate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/intel_pstate.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/kbd-backlight.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/kbd-backlight.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/lcd-brightness.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/lcd-brightness.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/nmi-watchdog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/nmi-watchdog.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/nouveau.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/nouveau.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/pcie-aspm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/pcie-aspm.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/radeon-dpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/radeon-dpm.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/runtime-pm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/runtime-pm.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/sched-mc-power-savings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/sched-mc-power-savings.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/sched-smt-power-savings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/sched-smt-power-savings.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/start-stop-programs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/start-stop-programs.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/terminal-blanking.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/terminal-blanking.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/vgaswitcheroo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/vgaswitcheroo.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/video-out.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/video-out.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/wireless-ipw-power.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/wireless-ipw-power.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/wireless-iwl-power.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/wireless-iwl-power.conf -------------------------------------------------------------------------------- /etc/laptop-mode/conf.d/wireless-power.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/conf.d/wireless-power.conf -------------------------------------------------------------------------------- /etc/laptop-mode/laptop-mode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/laptop-mode.conf -------------------------------------------------------------------------------- /etc/laptop-mode/lm-profiler.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/laptop-mode/lm-profiler.conf -------------------------------------------------------------------------------- /etc/power/event.d/laptop-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/power/event.d/laptop-mode -------------------------------------------------------------------------------- /etc/power/scripts.d/laptop-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/power/scripts.d/laptop-mode -------------------------------------------------------------------------------- /etc/rules/99-laptop-mode.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/rules/99-laptop-mode.rules -------------------------------------------------------------------------------- /etc/rules/lmt-udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/rules/lmt-udev -------------------------------------------------------------------------------- /etc/systemd/laptop-mode.conf.tmpfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/systemd/laptop-mode.conf.tmpfiles -------------------------------------------------------------------------------- /etc/systemd/laptop-mode.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/systemd/laptop-mode.service -------------------------------------------------------------------------------- /etc/systemd/laptop-mode.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/systemd/laptop-mode.timer -------------------------------------------------------------------------------- /etc/systemd/lmt-poll.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/etc/systemd/lmt-poll.service -------------------------------------------------------------------------------- /gui/laptop-mode-tools.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/gui/laptop-mode-tools.desktop -------------------------------------------------------------------------------- /gui/laptop-mode-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/gui/laptop-mode-tools.svg -------------------------------------------------------------------------------- /gui/lmt-config-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/gui/lmt-config-gui -------------------------------------------------------------------------------- /gui/lmt-config-gui-pkexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/gui/lmt-config-gui-pkexec -------------------------------------------------------------------------------- /gui/lmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/gui/lmt.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/install.sh -------------------------------------------------------------------------------- /laptop-mode-tools.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/laptop-mode-tools.spec -------------------------------------------------------------------------------- /man/laptop-mode.conf.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/man/laptop-mode.conf.8 -------------------------------------------------------------------------------- /man/laptop_mode.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/man/laptop_mode.8 -------------------------------------------------------------------------------- /man/lm-profiler.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/man/lm-profiler.8 -------------------------------------------------------------------------------- /man/lm-profiler.conf.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/man/lm-profiler.conf.8 -------------------------------------------------------------------------------- /man/lm-syslog-setup.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/man/lm-syslog-setup.8 -------------------------------------------------------------------------------- /release-checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/release-checklist -------------------------------------------------------------------------------- /usr/lib/pm-utils/sleep.d/01laptop-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/lib/pm-utils/sleep.d/01laptop-mode -------------------------------------------------------------------------------- /usr/sbin/laptop_mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/sbin/laptop_mode -------------------------------------------------------------------------------- /usr/sbin/lm-profiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/sbin/lm-profiler -------------------------------------------------------------------------------- /usr/sbin/lm-syslog-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/sbin/lm-syslog-setup -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/locale/zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/locale/zh_CN.qm -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/locale/zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/locale/zh_CN.ts -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/module-helpers/lm-polling-daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/module-helpers/lm-polling-daemon -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/module-helpers/pm-freeze: -------------------------------------------------------------------------------- 1 | pm-helper -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/module-helpers/pm-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/module-helpers/pm-helper -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/module-helpers/pm-hibernate: -------------------------------------------------------------------------------- 1 | pm-helper -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/module-helpers/pm-suspend: -------------------------------------------------------------------------------- 1 | pm-helper -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/ac97-powersave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/ac97-powersave -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/battery-level-polling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/battery-level-polling -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/bluetooth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/bluetooth -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/configuration-file-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/configuration-file-control -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/cpufreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/cpufreq -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/cpuhotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/cpuhotplug -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/dpms-standby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/dpms-standby -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/eee-superhe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/eee-superhe -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/ethernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/ethernet -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/exec-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/exec-commands -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/hal-polling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/hal-polling -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/hdparm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/hdparm -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/intel-hda-powersave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/intel-hda-powersave -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/intel-sata-powermgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/intel-sata-powermgmt -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/intel_pstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/intel_pstate -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/kbd-backlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/kbd-backlight -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/laptop-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/laptop-mode -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/lcd-brightness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/lcd-brightness -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/nmi-watchdog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/nmi-watchdog -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/nouveau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/nouveau -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/pcie-aspm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/pcie-aspm -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/radeon-dpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/radeon-dpm -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/runtime-pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/runtime-pm -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/sched-mc-power-savings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/sched-mc-power-savings -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/sched-smt-power-savings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/sched-smt-power-savings -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/start-stop-programs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/start-stop-programs -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/syslog-conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/syslog-conf -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/terminal-blanking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/terminal-blanking -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/vgaswitcheroo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/vgaswitcheroo -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/video-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/video-out -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/wireless-ipw-power: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/wireless-ipw-power -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/wireless-iwl-power: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/wireless-iwl-power -------------------------------------------------------------------------------- /usr/share/laptop-mode-tools/modules/wireless-power: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/laptop-mode-tools/modules/wireless-power -------------------------------------------------------------------------------- /usr/share/polkit-1/actions/org.linux.lmt.gui.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickysarraf/laptop-mode-tools/HEAD/usr/share/polkit-1/actions/org.linux.lmt.gui.policy --------------------------------------------------------------------------------