machine_setup/ansible/roles/sway/tasks/freebsd.yaml

34 lines
722 B
YAML
Raw Normal View History

2022-10-17 18:40:22 +00:00
- name: Install packages
package:
name:
- xeyes
- xauth # for ssh x11 forwarding
# - 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
- 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
- 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
dest: /usr/local/bin/launch_sway