4f12cfc26b
mainly for a dropdown terminal
27 lines
426 B
YAML
27 lines
426 B
YAML
- name: "Install AUR packages"
|
|
hosts: localhost
|
|
connection: local
|
|
|
|
tasks:
|
|
|
|
- name: Install AUR packages
|
|
become: yes
|
|
become_user: aur_builder
|
|
aur:
|
|
name: '{items}'
|
|
with_items:
|
|
- autotiling
|
|
- insync
|
|
- c-lolcat
|
|
- plus42
|
|
|
|
- name: Install AUR packages for hyrland
|
|
become: yes
|
|
become_user: aur_builder
|
|
aur:
|
|
name:
|
|
- hyprshot
|
|
- pyprland
|
|
|
|
|
|
|