Files
myi3/tasks/configure-software-manjaro.yaml
Karl Goecking 66f6253f18 Seafile komplett entfernt, Workspace-Zuweisungen angepasst
- 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
2026-02-16 07:05:22 +01:00

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