Install i3 and i3status config

This commit is contained in:
Michael Mandl 2021-03-06 15:51:56 +01:00
parent 764b5cd16c
commit d5ab541f07
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
3 changed files with 157 additions and 0 deletions

View file

@ -36,3 +36,17 @@
command:
cmd: localectl --no-convert set-x11-keymap de pc105 nodeadkeys
creates: /etc/X11/xorg.conf.d/00-keyboard.conf
- name: install i3 config
become_user: "{{ account.name }}"
copy:
src: config/i3/config
dest: "/home/{{ account.name }}/.config/i3/config"
force: no
- name: install i3status config
become_user: "{{ account.name }}"
copy:
src: config/i3status/config
dest: "/home/{{ account.name }}/.config/i3status/config"
force: yes