You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

main.yaml 592B

3 years ago
2 years ago
1234567891011121314151617181920212223242526272829
  1. ---
  2. - name: desktop packages
  3. apt:
  4. pkg: "{{ desktop_packages }}"
  5. - name: ensure dunst package is absent for nicer notifications
  6. apt:
  7. pkg: dunst
  8. state: absent
  9. - name: default system icon theme
  10. template:
  11. src: icon.theme.j2
  12. dest: /usr/share/icons/default/index.theme
  13. - name: xorg touchpad config
  14. template:
  15. src: touchpad.conf.j2
  16. dest: /etc/X11/xorg.conf.d/30-touchpad.conf
  17. - name: unclutter default config
  18. template:
  19. src: unclutter.default.j2
  20. dest: /etc/default/unclutter
  21. - import_tasks: screensaver.yaml
  22. - import_tasks: xfce-customization.yaml