2022-10-17 18:40:22 +00:00
|
|
|
- name: Install packages
|
|
|
|
package:
|
|
|
|
name:
|
|
|
|
- xeyes
|
|
|
|
- xauth # for ssh x11 forwarding
|
2023-07-30 18:37:54 +00:00
|
|
|
# - wev # For debugging input
|
2022-11-29 08:03:18 +00:00
|
|
|
- wlogout # Log out prompt
|
2023-03-05 18:29:41 +00:00
|
|
|
- xhost # to launch gparted with root permissions
|
2023-05-31 01:18:47 +00:00
|
|
|
- wlvncc
|
2023-09-06 00:43:12 +00:00
|
|
|
- wl-screenrec # screen recording
|
2022-10-17 18:40:22 +00:00
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: Install service configuration
|
|
|
|
copy:
|
|
|
|
src: "files/{{ item }}_rc.conf"
|
|
|
|
dest: "/etc/rc.conf.d/{{ item }}"
|
|
|
|
mode: 0644
|
|
|
|
owner: root
|
|
|
|
group: wheel
|
|
|
|
loop:
|
|
|
|
- seatd
|
|
|
|
- dbus
|
2022-10-17 19:15:09 +00:00
|
|
|
|
|
|
|
- name: Install scripts
|
|
|
|
copy:
|
|
|
|
src: "files/{{ item.src }}"
|
|
|
|
dest: "{{ item.dest }}"
|
|
|
|
mode: 0755
|
|
|
|
owner: root
|
|
|
|
group: wheel
|
|
|
|
loop:
|
2022-10-17 22:23:37 +00:00
|
|
|
- src: launch_sway_freebsd.bash
|
2022-10-17 19:15:09 +00:00
|
|
|
dest: /usr/local/bin/launch_sway
|