1
0
mirror of https://github.com/eoli3n/dotfiles synced 2024-11-26 06:08:35 +01:00

added packages-...

This commit is contained in:
eoli3n 2017-12-19 01:11:08 +01:00
parent 99e1078451
commit 489840da6e
2 changed files with 56 additions and 0 deletions

@ -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"

@ -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"