add i3 config
This commit is contained in:
parent
401af4717e
commit
17e1facd20
2 changed files with 158 additions and 0 deletions
15
roles/i3/tasks/main.yml
Normal file
15
roles/i3/tasks/main.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
- name: Install packages
|
||||
become: true
|
||||
apt:
|
||||
pkg:
|
||||
- i3-wm
|
||||
- rofi
|
||||
- i3lock
|
||||
- name: Create i3 config directory
|
||||
file:
|
||||
path: ~/.config/i3
|
||||
state: directory
|
||||
- name: Copy i3 config
|
||||
copy:
|
||||
src: "{{ role_path }}/files/config"
|
||||
dest: ~/.config/i3/config
|
Reference in a new issue