using utilities for working with bluetooth

This commit is contained in:
aminnairi
2023-06-27 14:41:23 +02:00
parent 920e512445
commit 4676a6f71d
+27
View File
@@ -3,6 +3,27 @@
hosts: localhost hosts: localhost
connection: local connection: local
tasks: tasks:
- name: Install Pulsemixer (Pulseaudio Terminal UI)
become: true
pacman:
name: pulsemixer
state: present
- name: Install Bluez (Bluetooth management)
become: true
pacman:
name: bluez
state: present
- name: Install Bluez Utils (Bluetooth utilities)
become: true
pacman:
name: bluez-utils
state: present
- name: Install Bluetuith (Bluetooth Terminal UI)
become: true
kewlfft.aur.aur:
name: bluetuith
state: present
update_cache: yes
- name: Install i3lock-fancy (window locker) - name: Install i3lock-fancy (window locker)
become: true become: true
kewlfft.aur.aur: kewlfft.aur.aur:
@@ -181,6 +202,12 @@
pacman: pacman:
name: networkmanager name: networkmanager
state: present state: present
- name: Start Bluetooth service
become: true
service:
enabled: true
name: bluetooth
state: started
- name: Start Network Manager service - name: Start Network Manager service
become: true become: true
service: service: