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

58 lines
940 B
YAML
Raw Normal View History

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