- Seafile entfernt: AUR-Paket, systemd-Service, Ansible-Tasks, ~/Seafile Verzeichnis, Doku - Vivaldi assign korrigiert: WS1 -> WS4:WEB (passend zur neuen Workspace-Struktur) - Workspace-Doku aktualisiert: WS1-3 frei, WS4:WEB, WS5:EDIT, WS6:FILES
41 lines
921 B
YAML
41 lines
921 B
YAML
- name: Package Installation - Update Pacman package cache
|
|
pacman:
|
|
update_cache: true
|
|
changed_when: false
|
|
|
|
- name: Package Installation - Productivity Tools
|
|
package:
|
|
name: ["alacritty", "ranger", "mousepad", "ghostwriter", "thunar", "xclip"]
|
|
state: present
|
|
|
|
- name: Package Installation - Install AUR packages
|
|
become_user: "{{ username }}"
|
|
command: yay -S --noconfirm greenclip
|
|
args:
|
|
creates: /usr/bin/greenclip
|
|
|
|
- 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
|