lot of new programs

This commit is contained in:
Bertrand Benjamin 2018-08-22 22:54:51 +02:00
parent dcf7f409ed
commit 7cc7519807
5 changed files with 39 additions and 0 deletions

View File

@ -7,7 +7,9 @@
tasks:
- include: tasks/arch_base_packages.yml
- include: tasks/zsh.yml
- include: tasks/users.yml
- include: tasks/sudo.yml
- include: tasks/arch_aur.yml
- include: tasks/arch_gnome.yml
- include: tasks/arch_graphicals.yml

View File

@ -11,4 +11,9 @@
with_items:
- zsh
- vim
- tmux
- git
- openssh
- htop
- ranger

View File

@ -7,6 +7,9 @@
- gnome
- gdm
- gnome-tweaks
- gparted
- transmission-gtk
- quodlibet
- name: enable service gdm
systemd:

17
tasks/arch_graphicals.yml Normal file
View File

@ -0,0 +1,17 @@
---
- name: Install graphical packages
pacman:
name: "{{ item }}"
state: present
with_items:
- gimp
- firefox
- firefox-i18n-fr
- chromium-browser
- inkscape
- thunderbird
- thunderbird-i18n-fr
- libreoffice-fresh
- hunspell
- hunspell-fr
- rxvt-unicode

12
tasks/zsh.yml Normal file
View File

@ -0,0 +1,12 @@
---
- name: download default grml configuration
get_url:
url: http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc
dest: /etc/zsh/newuser.zshrc.recommended
backup: yes
- name: Set shell for root to zsh
user:
name: root
shell: /bin/zsh