aboutsummaryrefslogtreecommitdiffstats
path: root/system/etc
diff options
context:
space:
mode:
authorSpacedio <spacedio@thernusen.net>2026-05-24 21:07:04 -0400
committerSpacedio <spacedio@thernusen.net>2026-05-24 21:07:04 -0400
commit7999b9ad79a5aba6b12be73a938c823fc5b329e8 (patch)
tree35fab2c4b53b498c22bb0b701957f67d52366354 /system/etc
parenta82c20fbc2d736cba174502fccbcba648ce978e9 (diff)
downloaddotfiles-7999b9ad79a5aba6b12be73a938c823fc5b329e8.tar.gz
Reorganization of files.
Diffstat (limited to 'system/etc')
-rw-r--r--system/etc/X11/xorg.conf.d/10-igpu.conf8
-rw-r--r--system/etc/X11/xorg.conf.d/30-touchpad.conf9
-rw-r--r--system/etc/udev/rules.d/80-nvidia-pm.rules5
3 files changed, 22 insertions, 0 deletions
diff --git a/system/etc/X11/xorg.conf.d/10-igpu.conf b/system/etc/X11/xorg.conf.d/10-igpu.conf
new file mode 100644
index 0000000..49a4151
--- /dev/null
+++ b/system/etc/X11/xorg.conf.d/10-igpu.conf
@@ -0,0 +1,8 @@
+Section "ServerFlags"
+ Option "AutoAddGPU" "off"
+EndSection
+
+Section "Device"
+ Identifier "iGPU"
+ Driver "modesetting"
+EndSection
diff --git a/system/etc/X11/xorg.conf.d/30-touchpad.conf b/system/etc/X11/xorg.conf.d/30-touchpad.conf
new file mode 100644
index 0000000..f958e88
--- /dev/null
+++ b/system/etc/X11/xorg.conf.d/30-touchpad.conf
@@ -0,0 +1,9 @@
+Section "InputClass"
+ Identifier "touchpad"
+ Driver "libinput"
+ MatchIsTouchpad "on"
+ Option "Tapping" "on"
+ Option "NaturalScrolling" "on"
+ Option "ClickMethod" "clickfinger"
+ Option "AccelSpeed" "0.4"
+EndSection
diff --git a/system/etc/udev/rules.d/80-nvidia-pm.rules b/system/etc/udev/rules.d/80-nvidia-pm.rules
new file mode 100644
index 0000000..05cf9d7
--- /dev/null
+++ b/system/etc/udev/rules.d/80-nvidia-pm.rules
@@ -0,0 +1,5 @@
+# Enable runtime PM for NVIDIA VGA/3D controller devices
+ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x030000", ATTR{power/control}="auto"
+ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x030200", ATTR{power/control}="auto"
+# Enable runtime PM for NVIDIA Audio devices
+ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x040300", ATTR{power/control}="auto"