Move rule to ignore eventlircd devices in xorg to own xorg.conf.d snippet
This commit is contained in:
parent
b43181b9cc
commit
d3ca791a75
15
Manual.org
15
Manual.org
@ -1790,6 +1790,11 @@ first_run: False
|
||||
# NOTE: write-x11-keyboard-config is in the xlogin package
|
||||
# Ubuntu's systemd is patched, so it does not create the file automatically
|
||||
|
||||
- name: add snippet to ignore eventlircd devices in xorg
|
||||
template:
|
||||
src: templates/xorg-ignore-eventlircd.conf.j2
|
||||
dest: /etc/X11/xorg.conf.d/40-ignore-eventlircd.conf
|
||||
|
||||
- name: apt | install desktop programs
|
||||
apt:
|
||||
name: '{{ item }}'
|
||||
@ -2124,6 +2129,16 @@ Wants=x@vt7.service
|
||||
{{ ansible_managed | comment }}
|
||||
exec openbox-session
|
||||
#+END_SRC
|
||||
***** xorg.conf snippets
|
||||
#+BEGIN_SRC conf :tangle roles/yavdr-xorg/templates/xorg-ignore-eventlircd.conf.j2
|
||||
{{ ansible_managed | comment }}
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "exclude eventlircd devices"
|
||||
MatchTag "eventlircd"
|
||||
Option "Ignore" "True"
|
||||
EndSection
|
||||
#+END_SRC
|
||||
***** xorg.conf
|
||||
#+BEGIN_SRC conf :tangle roles/yavdr-xorg/templates/xorg-verbose.conf.j2
|
||||
Section "Device"
|
||||
|
@ -88,6 +88,11 @@
|
||||
# NOTE: write-x11-keyboard-config is in the xlogin package
|
||||
# Ubuntu's systemd is patched, so it does not create the file automatically
|
||||
|
||||
- name: add snippet to ignore eventlircd devices in xorg
|
||||
template:
|
||||
src: templates/xorg-ignore-eventlircd.conf.j2
|
||||
dest: /etc/X11/xorg.conf.d/40-ignore-eventlircd.conf
|
||||
|
||||
- name: apt | install desktop programs
|
||||
apt:
|
||||
name: '{{ item }}'
|
||||
|
@ -0,0 +1,7 @@
|
||||
{{ ansible_managed | comment }}
|
||||
|
||||
Section "InputClass"
|
||||
Identifier "exclude eventlircd devices"
|
||||
MatchTag "eventlircd"
|
||||
Option "Ignore" "True"
|
||||
EndSection
|
Loading…
Reference in New Issue
Block a user