ansible/roles/desktop/tasks/main.yml
Salt cd063c93bd Finish porting desktop stuff over
Desktop and laptop will now both be running THIS branch of the repo
2020-11-08 06:10:12 -06:00

16 lines
529 B
YAML

#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
---
- name: configure X misc
template: src={{ item }} dest=/etc/X11/xorg.conf.d/{{ item }}
loop:
# Disables mouse acceleration on all mouse peripherals
- 90-mouse-acceleration.conf
# Enables things like triple-tapping, etc. on touchpads
- 90-touchpad.conf
- name: configure plymouth
alternatives: name=default.plymouth path=/usr/share/plymouth/themes/bgrt/bgrt.plymouth
notify: regen initramfs
- name: configure packages
include_tasks: packages.yml