mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-26 06:08:35 +01:00
added packages-...
This commit is contained in:
parent
99e1078451
commit
489840da6e
28
roles/packages-common/tasks/main.yml
Normal file
28
roles/packages-common/tasks/main.yml
Normal file
@ -0,0 +1,28 @@
|
||||
---
|
||||
- name: Install common packages
|
||||
package: name={{item}} state=present
|
||||
with_items:
|
||||
- curl
|
||||
- wget
|
||||
- pygmentize
|
||||
become: True
|
||||
|
||||
- name: Install common packages (Archlinux)
|
||||
pacman: name={{item}} state=present
|
||||
with_items:
|
||||
- expac
|
||||
- jshon
|
||||
when: ansible_os_family == "Archlinux"
|
||||
become: True
|
||||
|
||||
- name: Install cower on Archlinux
|
||||
shell: creates=/usr/bin/cower curl -o PKGBUILD https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=cower; makepkg PKGBUILD --skippgpcheck --install --needed --noconfirm
|
||||
when: ansible_os_family == "Archlinux"
|
||||
|
||||
- name: Install pacaur on Archlinux
|
||||
shell: creates=/usr/bin/pacaur curl -o PKGBUILD https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=pacaur; makepkg PKGBUILD --install --needed --noconfirm
|
||||
when: ansible_os_family == "Archlinux"
|
||||
|
||||
- name: Install packer on Archlinux
|
||||
shell: creates=/usr/bin/packer curl -o PKGBUILD https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=packer-git; makepkg PKGBUILD --install --needed --noconfirm
|
||||
when: ansible_os_family == "Archlinux"
|
28
roles/packages-desktop/tasks/main.yml
Normal file
28
roles/packages-desktop/tasks/main.yml
Normal file
@ -0,0 +1,28 @@
|
||||
---
|
||||
- name: Install Desktop packages
|
||||
package: name={{item}} state=present
|
||||
with_items:
|
||||
- xorg-server
|
||||
- xorg-xinit
|
||||
- lxappearance
|
||||
- slop
|
||||
- maim
|
||||
- feh
|
||||
- xclip
|
||||
- xorg-xrdb
|
||||
- xorg-xfd
|
||||
- connman
|
||||
- geary
|
||||
- ttf-hack
|
||||
become: True
|
||||
|
||||
- name: Install Desktop packages (Archlinux)
|
||||
packer: name={{item}} state=present
|
||||
with_items:
|
||||
- google-chrome
|
||||
- connman-gtk
|
||||
- gnome-ssh-askpass2
|
||||
- ttf-font-awesome
|
||||
- ttf-unifont
|
||||
- ttf-font-icons
|
||||
when: ansible_os_family == "Archlinux"
|
Loading…
Reference in New Issue
Block a user