Install more packages
This commit is contained in:
parent
03a0c71104
commit
129b4d1571
2 changed files with 23 additions and 12 deletions
|
@ -18,9 +18,11 @@
|
|||
- composer
|
||||
- cups
|
||||
- curl
|
||||
- dbus-broker
|
||||
- dia
|
||||
- evince
|
||||
- fcitx5
|
||||
- file-roller
|
||||
- flameshot
|
||||
- foot
|
||||
- git
|
||||
|
@ -29,9 +31,11 @@
|
|||
- inkscape
|
||||
- isort
|
||||
- libreoffice
|
||||
- lightdm
|
||||
- lxpolkit
|
||||
- mesa-utils
|
||||
- mesa-utils-bin
|
||||
- meson
|
||||
- network-manager-gnome
|
||||
- network-manager-config-connectivity-debian
|
||||
- nextcloud-desktop
|
||||
|
@ -40,9 +44,13 @@
|
|||
- npm
|
||||
- pass
|
||||
- pavucontrol
|
||||
- pipewire
|
||||
- pipewire-audio
|
||||
- pipx
|
||||
- plocate
|
||||
- plymouth
|
||||
- plymouth-themes
|
||||
- plymouth-label
|
||||
- pkexec
|
||||
- puppet-lint
|
||||
- python3-deepdiff
|
||||
|
@ -51,6 +59,7 @@
|
|||
- qt5ct
|
||||
- rsync
|
||||
- scdaemon
|
||||
- shfmt
|
||||
- simple-scan
|
||||
- sway
|
||||
- sway-backgrounds
|
||||
|
@ -62,17 +71,18 @@
|
|||
- tsocks
|
||||
- unzip
|
||||
- waybar
|
||||
- waypipe
|
||||
- wdisplays
|
||||
- wget
|
||||
- wl-clipboard
|
||||
- wlr-randr
|
||||
- wofi
|
||||
- xdg-desktop-portal
|
||||
- xdg-desktop-portal-gtk
|
||||
- xdg-desktop-portal-wlr
|
||||
- xwayland
|
||||
- yapf3
|
||||
- yq
|
||||
- zathura
|
||||
- zsh
|
||||
state: latest
|
||||
update_cache: true
|
||||
|
|
|
@ -14,18 +14,19 @@
|
|||
path: '{{key_path}}'
|
||||
register: key
|
||||
- name: Get key
|
||||
ansible.builtin.command:
|
||||
chdir: /tmp
|
||||
cmd: wget -O ./keyring.gpg '{{ key_url }}'
|
||||
creates: /tmp/keyring.gpg
|
||||
when: not key.stat.exists
|
||||
- name: Dearmor key
|
||||
ansible.builtin.command:
|
||||
chdir: /tmp
|
||||
cmd: gpg --dearmor -o {{ key_path }} ./keyring.gpg
|
||||
creates: '{{key_path}}'
|
||||
become: true
|
||||
ansible.builtin.command:
|
||||
chdir: /tmp
|
||||
cmd: wget -O '{{ key_path }}' '{{ key_url }}'
|
||||
creates: '{{key_path}}'
|
||||
when: not key.stat.exists
|
||||
# - name: Dearmor key
|
||||
# ansible.builtin.command:
|
||||
# chdir: /tmp
|
||||
# cmd: gpg --dearmor -o {{ key_path }} ./keyring.gpg
|
||||
# creates: '{{key_path}}'
|
||||
# become: true
|
||||
# when: not key.stat.exists
|
||||
- name: install repo
|
||||
become: true
|
||||
ansible.builtin.template:
|
||||
|
@ -38,7 +39,7 @@
|
|||
autoclean: true
|
||||
autoremove: true
|
||||
install_recommends: true
|
||||
pkg: [firefox-mozilla-build]
|
||||
pkg: [firefox]
|
||||
state: latest
|
||||
update_cache: true
|
||||
- name: Get host app
|
||||
|
|
Loading…
Add table
Reference in a new issue