complete worsktation

This commit is contained in:
vincent 2019-04-10 20:26:02 +02:00
parent 68eb6a0b7e
commit d0a301123c
2 changed files with 75 additions and 0 deletions

View File

@ -0,0 +1,47 @@
workstation_wm_soft:
- xorg
- xorg-xinit
- awesome
- i3-gaps
- feh
- redshift
- light
- pamixer
- dunst
- rofi
- arandr
- ttf-font-awesome
- polkit-gnome
- compton
workstation_base_soft:
- mpc
- firefox
- firefox-i18n-fr
- mpv
- vlc
- rdesktop
- virt-manager
- virt-viewer
- termite
- thunderbird
- thunderbird-i18n-fr
- terminator
- pulseaudio
- numlockx
- keepassxc
- code
- eog
- chromium
workstation_aur_soft:
- aarchup
- polybar
# - filebot
- jdownloader2
- mpdris2
# - hyper

View File

@ -0,0 +1,28 @@
- name: install workstation wm soft
pacman:
state: present # not required. choices: absent;latest;present. Desired state of the package.
name: "{{ workstation_wm_soft }}" # not required. Name or list of names of the packages to install, upgrade, or remove.
become: yes
register: wm
- name: install workstation base soft
pacman:
state: present # not required. choices: absent;latest;present. Desired state of the package.
name: "{{ workstation_base_soft }}" # not required. Name or list of names of the packages to install, upgrade, or remove.
become: yes
register: base
- name: install aur workstation soft
aur:
name: "{{ workstation_aur_soft }}"
skip_installed: yes
#chech graphic card
- name: debug
debug:
msg: "{{ wm }} {{base}}"