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