diff --git a/roles/laptop/tasks/main.yml b/roles/laptop/tasks/main.yml index 2773633..a95bf2c 100644 --- a/roles/laptop/tasks/main.yml +++ b/roles/laptop/tasks/main.yml @@ -3,6 +3,8 @@ - name: Copy touchpad configuration file copy: src=30-touchpad.conf dest=/etc/X11/xorg.conf.d/30-touchpad.conf + tags: + - libinput - name: Copy logind configuration file copy: src=logind.conf dest=/etc/systemd/logind.conf diff --git a/roles/x/tasks/main.yml b/roles/x/tasks/main.yml index c9e9a30..1b080f3 100644 --- a/roles/x/tasks/main.yml +++ b/roles/x/tasks/main.yml @@ -32,10 +32,14 @@ - name: Enable middle-click scrolling template: src=30-scroll.conf dest=/etc/X11/xorg.conf.d/30-scroll.conf when: libinput.middle_click_scroll is defined + tags: + - libinput - name: Remap mouse buttons template: src=30-button_mapping.conf dest=/etc/X11/xorg.conf.d/30-button_mapping.conf when: libinput.button_mapping is defined + tags: + - libinput - include: sxhkd.yml - include: unclutter.yml