Files @ cdf411165c6e
Branch filter:

Location: ChaosStuff/cnc-dashboard/roles/kiosk/tasks/software.yml

Dennis Fink
Double quote to prevent globbing and word splitting.

https://www.shellcheck.net/wiki/SC2086
# This task list sets up the basic tools
---
- name: Install browser
  become: yes
  community.general.pacman:
    name: firefox
    state: present
- name: Install Xorg & wm & tools
  become: yes
  community.general.pacman:
    name:
      - xorg-xinit
      - xorg-server
      - xorg-xset
      - xorg-setxkbmap
      - unclutter
      - openbox
      - xf86-video-odroid-c2
      - ttf-liberation
      - barrier-headless
    state: present