1
0
Fork 0
mirror of https://github.com/eoli3n/dotfiles synced 2024-05-04 22:56:04 +02:00
eoli3n-dotfiles/roles/wofi/tasks/main.yml
2022-10-30 01:22:54 +02:00

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