From 2afaf12e7204d36cd14a280339ed6667c55fd1de Mon Sep 17 00:00:00 2001 From: Przemek Grondek Date: Sat, 5 Aug 2023 17:00:39 +0200 Subject: [PATCH] Add more gui software to install --- roles/ubuntu/tasks/packages.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/roles/ubuntu/tasks/packages.yml b/roles/ubuntu/tasks/packages.yml index ec34029..5d5eea3 100644 --- a/roles/ubuntu/tasks/packages.yml +++ b/roles/ubuntu/tasks/packages.yml @@ -1,15 +1,15 @@ --- -- name: install aptitude +- name: install package managers become: yes apt: update_cache: yes pkg: - aptitude + - flatpak - name: install terminal packages become: yes apt: - update_cache: yes pkg: - vim-gtk3 - git @@ -32,29 +32,32 @@ pkg: - libfuse2 -- name: install gui packages +- name: install gui packages from apt become: yes apt: - update_cache: yes pkg: - gnome-backgrounds - ubuntu-wallpapers-focal - numlockx - pavucontrol - pasystray - - gnome-screenshot + - flameshot + +- name: install the smile emoji picker + community.general.flatpak: + state: present + name: it.mijorus.smile - name: install git become: yes apt: - update_cache: yes pkg: - git - name: install gui apps become: yes apt: - update_cache: yes pkg: - redshift - picom +