Refactor for use with Hyprland
This commit is contained in:
parent
67f4db010d
commit
5d893c1326
26 changed files with 447 additions and 394 deletions
22
roles/desktop-environment/tasks/flatpak.yml
Normal file
22
roles/desktop-environment/tasks/flatpak.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
- name: Install flatpak
|
||||
become: yes
|
||||
apt:
|
||||
state: latest
|
||||
install_recommends: false
|
||||
name:
|
||||
- flatpak
|
||||
|
||||
- name: Add flathub remote to flatpak
|
||||
community.general.flatpak_remote:
|
||||
name: flathub
|
||||
state: present
|
||||
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||
method: user
|
||||
|
||||
- name: Install flatpaks
|
||||
community.general.flatpak:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
method: user
|
||||
loop:
|
||||
- org.wezfurlong.wezterm
|
Loading…
Add table
Add a link
Reference in a new issue