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 482B

2 jaren geleden
3 jaren geleden
2 jaren geleden
2 jaren geleden
1234567891011121314151617181920212223
  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. - import_tasks: screensaver.yaml
  18. - import_tasks: xfce-customization.yaml