fix: xremap
This commit is contained in:
parent
3447a0b86d
commit
3ae707ed45
3 changed files with 18 additions and 1 deletions
1
ansible/.gitignore
vendored
Normal file
1
ansible/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
arch_packages.json
|
|
@ -6,5 +6,6 @@ Description=xremap
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Restart=always
|
Restart=always
|
||||||
ExecStart=xremap {{ home }}/.config/xremap/config.yaml --watch
|
ExecStart=xremap {{ home }}/.config/xremap/config.yaml
|
||||||
|
# --watch does nothing
|
||||||
|
|
||||||
|
|
|
@ -226,6 +226,21 @@
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
||||||
# OTHERS
|
# OTHERS
|
||||||
|
- name: Setup mount point folder
|
||||||
|
file:
|
||||||
|
path: "{{ home }}/.mnt"
|
||||||
|
state: directory
|
||||||
|
recurse: true
|
||||||
|
- name: Setup mount point folder
|
||||||
|
file:
|
||||||
|
path: "{{ home }}/.mnt/etb"
|
||||||
|
state: directory
|
||||||
|
recurse: true
|
||||||
|
- name: Setup triage folder
|
||||||
|
file:
|
||||||
|
path: "{{ home }}/triage"
|
||||||
|
state: directory
|
||||||
|
recurse: true
|
||||||
- name: Setup quick notes folder
|
- name: Setup quick notes folder
|
||||||
file:
|
file:
|
||||||
path: "{{ home }}/.hidden/quick_notes/"
|
path: "{{ home }}/.hidden/quick_notes/"
|
||||||
|
|
Loading…
Reference in a new issue