feat(ptyxis): add new role for a terminal
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
1d65e7e176
commit
67d4083b97
2 changed files with 11 additions and 0 deletions
|
@ -72,6 +72,11 @@
|
||||||
- role: terminals/kitty
|
- role: terminals/kitty
|
||||||
tags: kitty
|
tags: kitty
|
||||||
|
|
||||||
|
# Install Ptyxis terminal
|
||||||
|
- role: terminals/ptyxis
|
||||||
|
when: ansible_distribution != "Ubuntu"
|
||||||
|
tags: ptyxis
|
||||||
|
|
||||||
# Install fonts
|
# Install fonts
|
||||||
- role: fonts
|
- role: fonts
|
||||||
tags: fonts
|
tags: fonts
|
||||||
|
|
6
roles/terminals/ptyxis/tasks/main.yml
Normal file
6
roles/terminals/ptyxis/tasks/main.yml
Normal file
|
@ -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
|
Loading…
Reference in a new issue