mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-23 07:21:58 +01:00
32 lines
568 B
YAML
32 lines
568 B
YAML
---
|
|
- name: create sway config dir
|
|
file:
|
|
path: ~/.config/sway/
|
|
state: directory
|
|
|
|
- name: copy configuration file
|
|
template:
|
|
src: config.j2
|
|
dest: ~/.config/sway/config
|
|
|
|
- name: autostart sway
|
|
copy:
|
|
src: bash_profile
|
|
dest: ~/.bash_profile
|
|
|
|
- name: create swaylock dir config
|
|
file:
|
|
path: ~/.config/swaylock/
|
|
state: directory
|
|
|
|
- name: copy swaylock config
|
|
copy:
|
|
src: swaylock.config
|
|
dest: ~/.config/swaylock/config
|
|
|
|
- name: copy gsettings importer
|
|
copy:
|
|
src: import-gsettings
|
|
dest: ~/.config/sway/
|
|
mode: 0755
|