summaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-12-12 15:19:40 +0100
committerAhmed Abdelhalim <[email protected]>2025-12-12 15:19:40 +0100
commit336e41189a51629078c54f5edb7367d26687c70b (patch)
tree3e0f980f00f5fb91f1d33eca8c9f527dfcecc019 /roles
parenteeb3d16d53f31a311a4ecdaa644195c83733fcd4 (diff)
Add uwsm role (dependency of hyprland)
Diffstat (limited to 'roles')
-rw-r--r--roles/uwsm/meta/argument_specs.yml6
-rw-r--r--roles/uwsm/meta/main.yml12
-rw-r--r--roles/uwsm/tasks/main.yml6
3 files changed, 24 insertions, 0 deletions
diff --git a/roles/uwsm/meta/argument_specs.yml b/roles/uwsm/meta/argument_specs.yml
new file mode 100644
index 00000000..f2281dfd
--- /dev/null
+++ b/roles/uwsm/meta/argument_specs.yml
@@ -0,0 +1,6 @@
+---
+argument_specs:
+ main:
+ short_description: "Install uwsm on Arch Linux"
+ description: "Install uwsm on Arch Linux"
+ options: {}
diff --git a/roles/uwsm/meta/main.yml b/roles/uwsm/meta/main.yml
new file mode 100644
index 00000000..4090e0ae
--- /dev/null
+++ b/roles/uwsm/meta/main.yml
@@ -0,0 +1,12 @@
+---
+dependencies: []
+galaxy_info:
+ author: "a14m"
+ description: "Install uwsm on Arch Linux"
+ company: "kartoffeln.work GmbH."
+ license: "MIT"
+ min_ansible_version: "2.18"
+ platforms:
+ - name: "ArchLinux"
+ versions:
+ - "all"
diff --git a/roles/uwsm/tasks/main.yml b/roles/uwsm/tasks/main.yml
new file mode 100644
index 00000000..6368b39e
--- /dev/null
+++ b/roles/uwsm/tasks/main.yml
@@ -0,0 +1,6 @@
+---
+- name: "Ensure uwsm is installed"
+ become: true
+ ansible.builtin.package:
+ name: "uwsm"
+ state: "present"