Files
myi3/tasks/configure-software-ubuntu.yaml

44 lines
834 B
YAML

- name: Package Installation - Update Apt package cache
apt:
update_cache: true
changed_when: false
- name: Package Installation - Productivity Tools
package:
name:
[
"alacritty",
"ranger",
"mousepad",
"ghostwriter",
"thunar",
"xclip",
"greenclip",
]
state: present
- name: Package Installation - Development Tools
package:
name: ["binutils"]
state: present
- name: Package Installation - Media
package:
name: ["flameshot", "imagemagick", "scrot"]
state: present
- name: Package Installation - System Desktop
package:
name:
[
"rofi",
"nitrogen",
"dunst",
"i3blocks",
"arandr",
"autorandr",
"brightnessctl",
"autotiling",
]
state: present