Skip to content
Snippets Groups Projects
Commit b4b7b084 authored by Maxime Bombar's avatar Maxime Bombar
Browse files

Deploy graphical config (i3 etc ...)

parent 0fece372
No related branches found
No related tags found
No related merge requests found
---
- name: Install useful packages
apt:
update_cache: true
install_recommends: false
name:
- i3
- firefox
- chromium
- vlc
- thunderbird
- scrot
- xss-lock
register: apt_result
retries: 3
until: apt_result is succeeded
- name: Deploy i3 configuration
file:
src: /home/{{ ansible_user}}/Git/Config_Files/{{ item }}
dest: /home/{{ ansible_user }}/{{ item }}
state: link
loop:
- .config/autorandr
- .config/i3
- .config/i3status
- .config/i3blocks
- .Xmodmap
when: not ansible_check_mode
...@@ -9,3 +9,7 @@ ...@@ -9,3 +9,7 @@
- ansible_become: false - ansible_become: false
roles: roles:
- deploy_config - deploy_config
- hosts: localhost
roles:
- i3
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment