You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
12345678910111213141516171819202122232425 |
- ---
-
- - name: i3 config directory
- file:
- path: ~/.config/i3
- state: directory
-
- - name: i3 config
- template:
- src: i3/i3.config.j2
- dest: ~/.config/i3/config
-
- - name: check i3 config
- command: i3 -c ~/.config/i3/config -C
- changed_when: false
-
- - name: i3blocks config directory
- file:
- path: ~/.config/i3blocks
- state: directory
-
- - name: i3blocks config
- template:
- src: i3/i3blocks.config.j2
- dest: ~/.config/i3blocks/config
|