lot of new programs
This commit is contained in:
parent
dcf7f409ed
commit
7cc7519807
@ -7,7 +7,9 @@
|
|||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- include: tasks/arch_base_packages.yml
|
- include: tasks/arch_base_packages.yml
|
||||||
|
- include: tasks/zsh.yml
|
||||||
- include: tasks/users.yml
|
- include: tasks/users.yml
|
||||||
- include: tasks/sudo.yml
|
- include: tasks/sudo.yml
|
||||||
- include: tasks/arch_aur.yml
|
- include: tasks/arch_aur.yml
|
||||||
- include: tasks/arch_gnome.yml
|
- include: tasks/arch_gnome.yml
|
||||||
|
- include: tasks/arch_graphicals.yml
|
||||||
|
@ -11,4 +11,9 @@
|
|||||||
with_items:
|
with_items:
|
||||||
- zsh
|
- zsh
|
||||||
- vim
|
- vim
|
||||||
|
- tmux
|
||||||
|
- git
|
||||||
|
- openssh
|
||||||
|
- htop
|
||||||
|
- ranger
|
||||||
|
|
||||||
|
@ -7,6 +7,9 @@
|
|||||||
- gnome
|
- gnome
|
||||||
- gdm
|
- gdm
|
||||||
- gnome-tweaks
|
- gnome-tweaks
|
||||||
|
- gparted
|
||||||
|
- transmission-gtk
|
||||||
|
- quodlibet
|
||||||
|
|
||||||
- name: enable service gdm
|
- name: enable service gdm
|
||||||
systemd:
|
systemd:
|
||||||
|
17
tasks/arch_graphicals.yml
Normal file
17
tasks/arch_graphicals.yml
Normal 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
12
tasks/zsh.yml
Normal 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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user