mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-26 06:08:35 +01:00
22 lines
378 B
YAML
22 lines
378 B
YAML
---
|
|
- name: create wofi config dir
|
|
file:
|
|
path: ~/.config/wofi
|
|
state: directory
|
|
|
|
- name: template wofi style
|
|
template:
|
|
src: style.j2
|
|
dest: ~/.config/wofi/style.css
|
|
|
|
- name: copy wofi config
|
|
copy:
|
|
src: config
|
|
dest: ~/.config/wofi/
|
|
|
|
- name: copy wofi powermenu
|
|
template:
|
|
src: powermenu.sh.j2
|
|
dest: ~/.config/wofi/powermenu.sh
|
|
mode: 0755
|