ansible-desktop/roles/desktop/tasks/ubuntu.yml

58 lines
940 B
YAML
Raw Normal View History

2020-07-01 16:25:21 +02:00
---
2023-08-05 17:00:39 +02:00
- name: install package managers
2020-07-01 16:25:21 +02:00
become: yes
apt:
update_cache: yes
pkg:
- aptitude
2023-08-05 17:00:39 +02:00
- flatpak
2020-07-01 16:25:21 +02:00
- name: install terminal packages
become: yes
apt:
pkg:
2020-09-21 10:40:57 +02:00
- vim-gtk3
2020-07-01 16:25:21 +02:00
- htop
- tmux
- graphviz
- screen
2020-07-01 16:47:58 +02:00
- traceroute
2020-07-01 16:25:21 +02:00
- command-not-found
- dnsutils
2020-07-02 11:31:57 +02:00
- hexcurse
2020-07-06 10:05:37 +02:00
- net-tools
2020-07-10 18:23:18 +02:00
- pm-utils
2020-09-21 10:40:57 +02:00
- policykit-1-gnome
- printer-driver-escpr
2022-07-14 20:56:47 +02:00
2023-05-16 10:29:57 +02:00
- name: install libfuse2 for appimages
become: yes
apt:
pkg:
- libfuse2
2023-08-05 17:00:39 +02:00
- name: install gui packages from apt
2022-07-14 20:56:47 +02:00
become: yes
apt:
pkg:
2021-07-07 01:46:26 +02:00
- gnome-backgrounds
- ubuntu-wallpapers-focal
- numlockx
2022-07-14 20:56:47 +02:00
- pavucontrol
- pasystray
2023-08-05 17:00:39 +02:00
- flameshot
2023-08-26 23:57:26 +02:00
- gsimplecal
2023-08-05 17:00:39 +02:00
- name: install the smile emoji picker
community.general.flatpak:
state: present
name: it.mijorus.smile
2020-07-01 16:25:21 +02:00
2020-07-01 17:37:22 +02:00
- name: install gui apps
become: yes
apt:
pkg:
- redshift
2022-09-03 15:22:47 +02:00
- picom
2023-08-05 17:00:39 +02:00