mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 12:12:13 +02:00
24 lines
486 B
YAML
24 lines
486 B
YAML
---
|
|
- 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: true
|
|
- name: Start Bluetooth service
|
|
become: true
|
|
service:
|
|
enabled: true
|
|
name: bluetooth
|
|
state: started
|