diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-12-02 15:04:30 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-12-02 15:04:30 +0100 |
| commit | fde708bc71f6681a877245668e628942007b2676 (patch) | |
| tree | 8cf3e4681f16706078764679e8f115293e8168da /roles | |
| parent | c93d91e4a0b61d90d9c2de140f750419c1a33735 (diff) | |
Add alactritty terminal emulator on different distros
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/alacritty/meta/argument_specs.yml | 6 | ||||
| -rw-r--r-- | roles/alacritty/meta/main.yml | 18 | ||||
| -rw-r--r-- | roles/alacritty/tasks/main.yml | 6 |
3 files changed, 30 insertions, 0 deletions
diff --git a/roles/alacritty/meta/argument_specs.yml b/roles/alacritty/meta/argument_specs.yml new file mode 100644 index 00000000..355d1d7b --- /dev/null +++ b/roles/alacritty/meta/argument_specs.yml @@ -0,0 +1,6 @@ +--- +argument_specs: + main: + short_description: "Install alacritty terminal on Linux distribution" + description: "Install alacritty terminal on Linux distribution" + options: {} diff --git a/roles/alacritty/meta/main.yml b/roles/alacritty/meta/main.yml new file mode 100644 index 00000000..de04b7c0 --- /dev/null +++ b/roles/alacritty/meta/main.yml @@ -0,0 +1,18 @@ +--- +dependencies: [] +galaxy_info: + author: "a14m" + description: "Install alacritty terminal." + company: "kartoffeln.work GmbH." + license: "MIT" + min_ansible_version: "2.18" + platforms: + - name: "ArchLinux" + versions: + - "all" + - name: "Ubuntu" + versions: + - "noble" + - name: "Debian" + versions: + - "bookworm" diff --git a/roles/alacritty/tasks/main.yml b/roles/alacritty/tasks/main.yml new file mode 100644 index 00000000..c250df23 --- /dev/null +++ b/roles/alacritty/tasks/main.yml @@ -0,0 +1,6 @@ +--- +- name: "Ensure Alacritty is installed" + become: true + ansible.builtin.package: + name: "alacritty" + state: "present" |
