added foot config
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
- name: Initial installation of WSL arch
|
- name: Initial installation of WSL arch
|
||||||
hosts: localhost
|
hosts: localhost,all
|
||||||
become: yes
|
become: yes
|
||||||
|
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
@@ -130,13 +130,16 @@
|
|||||||
remote_src: yes
|
remote_src: yes
|
||||||
|
|
||||||
|
|
||||||
- name: Ensures sway config direcotry exists
|
- name: Ensures config directories exist
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: /home/tobi/.config/sway
|
path: /home/tobi/.config/{{ item }}
|
||||||
state: directory
|
state: directory
|
||||||
group: tobi
|
group: tobi
|
||||||
owner: tobi
|
owner: tobi
|
||||||
mode: '0744'
|
mode: '0744'
|
||||||
|
loop:
|
||||||
|
- sway
|
||||||
|
- foot
|
||||||
|
|
||||||
- name: Copy sway config to config
|
- name: Copy sway config to config
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
@@ -147,6 +150,15 @@
|
|||||||
mode: '0644'
|
mode: '0644'
|
||||||
remote_src: yes
|
remote_src: yes
|
||||||
|
|
||||||
|
- name: Copy foot config to config
|
||||||
|
ansible.builtin.copy:
|
||||||
|
src: //tmp/dotfiles/foot.ini
|
||||||
|
dest: /home/tobi/.config/foot/foot.ini
|
||||||
|
owner: tobi
|
||||||
|
group: tobi
|
||||||
|
mode: '0644'
|
||||||
|
remote_src: yes
|
||||||
|
|
||||||
- name: Enable service ly, and not touch the state
|
- name: Enable service ly, and not touch the state
|
||||||
ansible.builtin.service:
|
ansible.builtin.service:
|
||||||
name: ly
|
name: ly
|
||||||
|
|||||||
Reference in New Issue
Block a user