19 lines
292 B
YAML
19 lines
292 B
YAML
|
---
|
||
|
- name: restart pipewire
|
||
|
systemd:
|
||
|
name: pipewire
|
||
|
scope: user
|
||
|
state: restarted
|
||
|
|
||
|
- name: restart bluetooth
|
||
|
service:
|
||
|
name: bluetooth
|
||
|
state: restarted
|
||
|
become: yes
|
||
|
|
||
|
- name: enable boost
|
||
|
systemd:
|
||
|
name: boost
|
||
|
enabled: yes
|
||
|
state: started
|
||
|
become: yes
|