summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-01-08 23:23:09 +0100
committerAhmed Abdelhalim <[email protected]>2026-01-08 23:24:08 +0100
commit636353ce0e02db63dce14ea6be45da951db289b0 (patch)
tree78c364a794cde7b4d09a04b04cd7d67c9ab37faa
parent55ca70f89577bd19af4abda7e2d7377ddd42f48b (diff)
Add wiremix role
-rw-r--r--molecule/archlinux-gnome/converge.yml1
-rw-r--r--molecule/archlinux/converge.yml1
-rw-r--r--roles/wiremix/meta/argument_specs.yml6
-rw-r--r--roles/wiremix/meta/main.yml12
-rw-r--r--roles/wiremix/tasks/main.yml6
5 files changed, 26 insertions, 0 deletions
diff --git a/molecule/archlinux-gnome/converge.yml b/molecule/archlinux-gnome/converge.yml
index 90b16ce3..64ec0f1c 100644
--- a/molecule/archlinux-gnome/converge.yml
+++ b/molecule/archlinux-gnome/converge.yml
@@ -80,3 +80,4 @@
- role: "wlctl"
- role: "pipewire"
- role: "brightnessctl"
+ - role: "wiremix"
diff --git a/molecule/archlinux/converge.yml b/molecule/archlinux/converge.yml
index 87af0bca..d8c1dea0 100644
--- a/molecule/archlinux/converge.yml
+++ b/molecule/archlinux/converge.yml
@@ -79,4 +79,5 @@
- role: "wlctl"
- role: "pipewire"
- role: "brightnessctl"
+ - role: "wiremix"
- role: "hyprland"
diff --git a/roles/wiremix/meta/argument_specs.yml b/roles/wiremix/meta/argument_specs.yml
new file mode 100644
index 00000000..5e10a43b
--- /dev/null
+++ b/roles/wiremix/meta/argument_specs.yml
@@ -0,0 +1,6 @@
+---
+argument_specs:
+ main:
+ short_description: "Install wiremix on ArchLinux"
+ description: "Install wiremix on ArchLinux"
+ options: {}
diff --git a/roles/wiremix/meta/main.yml b/roles/wiremix/meta/main.yml
new file mode 100644
index 00000000..b96164cf
--- /dev/null
+++ b/roles/wiremix/meta/main.yml
@@ -0,0 +1,12 @@
+---
+dependencies:
+ - role: "pipewire"
+galaxy_info:
+ author: "a14m"
+ description: "Install wiremix on ArchLinux"
+ license: "MIT"
+ min_ansible_version: "2.18"
+ platforms:
+ - name: "ArchLinux"
+ versions:
+ - "all"
diff --git a/roles/wiremix/tasks/main.yml b/roles/wiremix/tasks/main.yml
new file mode 100644
index 00000000..1a0b4f8a
--- /dev/null
+++ b/roles/wiremix/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: "Ensure wiremix is installed"
+ become: true
+ ansible.builtin.package:
+ name: "wiremix"
+ state: "present"