1
0
mirror of https://github.com/eoli3n/dotfiles synced 2024-09-24 21:10:50 +02:00
eoli3n-dotfiles/roles/sway/tasks/main.yml

32 lines
568 B
YAML
Raw Normal View History

---
- name: create sway config dir
file:
path: ~/.config/sway/
state: directory
- name: copy configuration file
template:
2020-01-02 11:05:10 +01:00
src: config.j2
dest: ~/.config/sway/config
- name: autostart sway
copy:
2020-04-27 10:14:33 +02:00
src: fish_profile
dest: ~/.fish_profile
2019-12-12 21:41:28 +01:00
- name: create swaylock dir config
file:
path: ~/.config/swaylock/
state: directory
- name: copy swaylock config
copy:
src: swaylock.config
dest: ~/.config/swaylock/config
2019-12-28 15:41:58 +01:00
- name: copy gsettings importer
copy:
src: import-gsettings
dest: ~/.config/sway/
mode: 0755