summaryrefslogtreecommitdiff
path: root/.linux
diff options
context:
space:
mode:
authorMike Crute <crutem@amazon.com>2018-12-04 09:21:00 -0800
committerMike Crute <crutem@amazon.com>2018-12-04 09:21:00 -0800
commit26a7211cbee89843347ed08aa5172cef0decbc0e (patch)
tree02d9a0d0e547f6b2356202c1441b1c8944e1de33 /.linux
parentc0af92fa2ae005c294883520cb3936adbb906913 (diff)
downloaddotfiles-26a7211cbee89843347ed08aa5172cef0decbc0e.tar.bz2
dotfiles-26a7211cbee89843347ed08aa5172cef0decbc0e.tar.xz
dotfiles-26a7211cbee89843347ed08aa5172cef0decbc0e.zip
Remove mouse fixup handlers, use xorg.conf
Diffstat (limited to '.linux')
-rw-r--r--.linux/README16
-rw-r--r--.linux/xorg.conf/50-dell-touchpad.conf11
-rw-r--r--.linux/xorg.conf/50-magic-trackpad.conf9
-rw-r--r--.linux/xorg.conf/50-marble-mouse.conf8
4 files changed, 44 insertions, 0 deletions
diff --git a/.linux/README b/.linux/README
new file mode 100644
index 0000000..f243924
--- /dev/null
+++ b/.linux/README
@@ -0,0 +1,16 @@
1This folder contains files that customize a Linux desktop setup and need to be
2overlayed onto the system. They're meaningless here.
3
4Copy or link files to these directories:
5
6 systemd/* -> ~/.config/systemd/user
7 applications/* -> ~/.local/share/applications/
8 xorg.conf/* -> /usr/share/X11/xorg.conf.d/
9
10The xorg.conf files require a restart of X:
11
12 systemctl restart gdm
13
14The systemd settings require a reload of systemd:
15
16 systemctl --user daemon-reload
diff --git a/.linux/xorg.conf/50-dell-touchpad.conf b/.linux/xorg.conf/50-dell-touchpad.conf
new file mode 100644
index 0000000..c0be220
--- /dev/null
+++ b/.linux/xorg.conf/50-dell-touchpad.conf
@@ -0,0 +1,11 @@
1Section "InputClass"
2 Identifier "Dell Trackpad"
3 MatchProduct "DELL07E6:00 06CB:76AF Touchpad"
4 Driver "libinput"
5 Option "ClickMethod" "clickfinger"
6 Option "NaturalScrolling" "on"
7 Option "Tapping" "on"
8 Option "TappingDrag" "on"
9 Option "MiddleEmulation" "on"
10 Option "TappingButtonMap" "lrm"
11EndSection
diff --git a/.linux/xorg.conf/50-magic-trackpad.conf b/.linux/xorg.conf/50-magic-trackpad.conf
new file mode 100644
index 0000000..fb2c69f
--- /dev/null
+++ b/.linux/xorg.conf/50-magic-trackpad.conf
@@ -0,0 +1,9 @@
1Section "InputClass"
2 Identifier "Magic Trackpad 2"
3 MatchProduct "Michael Crute's Trackpad"
4 Driver "libinput"
5 Option "ClickMethod" "clickfinger"
6 Option "NaturalScrolling" "on"
7 Option "Tapping" "on"
8 Option "TappingDrag" "on"
9EndSection
diff --git a/.linux/xorg.conf/50-marble-mouse.conf b/.linux/xorg.conf/50-marble-mouse.conf
new file mode 100644
index 0000000..7b35e0c
--- /dev/null
+++ b/.linux/xorg.conf/50-marble-mouse.conf
@@ -0,0 +1,8 @@
1Section "InputClass"
2 Identifier "Marble Mouse"
3 MatchProduct "Logitech USB Trackball"
4 Driver "libinput"
5 Option "ScrollMethod" "button"
6 Option "ScrollButton" "8"
7 Option "MiddleEmulation" "on"
8EndSection