- KeePassXC entfernt, Vivaldi durch Helium Browser ersetzt - Ghostwriter durch Typora ersetzt - Signal Desktop und Thunderbird hinzugefügt (WS8:CHAT, WS7:MAIL) - Multi-Monitor Shortcuts: mod+Ctrl+Up/Down/Shift+Down - AUR-Tasks aufgeteilt (eigener creates-Check pro Paket) - pulseaudio und pavucontrol zur Paketliste hinzugefügt - Dokumentation aktualisiert Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
53 lines
1.3 KiB
YAML
53 lines
1.3 KiB
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", "thunar", "xclip", "signal-desktop", "thunderbird", "pulseaudio", "pavucontrol"]
|
|
state: present
|
|
|
|
- name: Package Installation - Install AUR greenclip
|
|
become_user: "{{ username }}"
|
|
command: yay -S --noconfirm greenclip
|
|
args:
|
|
creates: /usr/bin/greenclip
|
|
|
|
- name: Package Installation - Install AUR helium-browser-bin
|
|
become_user: "{{ username }}"
|
|
command: yay -S --noconfirm helium-browser-bin
|
|
args:
|
|
creates: /usr/bin/helium-browser
|
|
|
|
- name: Package Installation - Install AUR typora
|
|
become_user: "{{ username }}"
|
|
command: yay -S --noconfirm typora
|
|
args:
|
|
creates: /usr/bin/typora
|
|
|
|
- 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
|