aboutsummaryrefslogtreecommitdiff
path: root/laptop
diff options
context:
space:
mode:
authorYaroslav de la Peña Smirnov <yps@yaroslavps.com>2023-01-02 18:24:19 +0300
committerYaroslav de la Peña Smirnov <yps@yaroslavps.com>2023-01-02 18:24:19 +0300
commiteab3ad3a252656d57639ce94867b2a7c3f80bde2 (patch)
treea39613b3f5bc2bbc31725cd4e1f4bcb9e6fc250e /laptop
parent20e89413859412e5c2bd475f11b4d3c320213578 (diff)
downloadswayrice-eab3ad3a252656d57639ce94867b2a7c3f80bde2.tar.gz
swayrice-eab3ad3a252656d57639ce94867b2a7c3f80bde2.zip
cleanup no longer needed files
Diffstat (limited to 'laptop')
-rwxr-xr-xlaptop/pmsetup.sh21
-rwxr-xr-xlaptop/powertune5
-rw-r--r--laptop/powertune.service11
3 files changed, 0 insertions, 37 deletions
diff --git a/laptop/pmsetup.sh b/laptop/pmsetup.sh
deleted file mode 100755
index 01b2e23..0000000
--- a/laptop/pmsetup.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-# Meant to be executed just once after system install
-
-cp powertune /bin/powertune
-cp powertune.service /etc/systemd/system/
-cp 90-backlight.rules /etc/udev/rules.d/
-sudo systemctl start powertune
-sudo systemctl enable powertune
-
-# Disable everything from being able to wake up the computer except for the lid
-for x in $(find /sys -name wakeup) ; do if [ "$(cat $x)" == "enabled" ]; then echo 'disabled' >> $x; fi; done
-echo LID | tee /proc/acpi/wakeup
-
-# lid
-cp logind.conf /etc/systemd/
-mkdir -p /etc/acpi/events
-mkdir -p /etc/acpi/actions
-cp lid-button /etc/acpi/events/
-cp lid-button.sh /etc/acpi/actions/
-sudo systemctl start acpid
-sudo systemctl enable acpid
diff --git a/laptop/powertune b/laptop/powertune
deleted file mode 100755
index f113000..0000000
--- a/laptop/powertune
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-/usr/bin/powertop --auto-tune
-for x in $(find /sys -name wakeup) ; do if [ "$(cat $x)" == "enabled" ]; then echo 'disabled' >> $x; fi; done
-echo LID | /usr/bin/tee /proc/acpi/wakeup
diff --git a/laptop/powertune.service b/laptop/powertune.service
deleted file mode 100644
index 0d7c3ca..0000000
--- a/laptop/powertune.service
+++ /dev/null
@@ -1,11 +0,0 @@
-[Unit]
-Description=Tune system's power management
-
-[Service]
-User=root
-Group=root
-ExecStart=/bin/powertune
-
-[Install]
-Alias=powertune.service
-WantedBy=multi-user.target