Files @ 4d7f924adca6
Branch filter:

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

Dennis Fink
Use cd ... || exit in case cd fails.

https://www.shellcheck.net/wiki/SC2164
# 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