From 67d4083b97c6803e72af17635a706942a876f47b Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Tue, 30 Jul 2024 15:08:54 +0200 Subject: [PATCH] feat(ptyxis): add new role for a terminal Signed-off-by: Matej Focko --- playbooks/bootstrap.yml | 5 +++++ roles/terminals/ptyxis/tasks/main.yml | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 roles/terminals/ptyxis/tasks/main.yml diff --git a/playbooks/bootstrap.yml b/playbooks/bootstrap.yml index f8bf6d7..4278560 100644 --- a/playbooks/bootstrap.yml +++ b/playbooks/bootstrap.yml @@ -72,6 +72,11 @@ - role: terminals/kitty tags: kitty + # Install Ptyxis terminal + - role: terminals/ptyxis + when: ansible_distribution != "Ubuntu" + tags: ptyxis + # Install fonts - role: fonts tags: fonts diff --git a/roles/terminals/ptyxis/tasks/main.yml b/roles/terminals/ptyxis/tasks/main.yml new file mode 100644 index 0000000..f5d4764 --- /dev/null +++ b/roles/terminals/ptyxis/tasks/main.yml @@ -0,0 +1,6 @@ +--- +- name: Install Ptyxis + community.general.flatpak: + name: "https://nightly.gnome.org/repo/appstream/org.gnome.Ptyxis.Devel.flatpakref" + state: present + become: true