Files
Dotfiles/roles/hypr/tasks/main.yml
Keule0010 d46e7c8dad Fixed bugs
Added paru installation
Switchted to hyprlock
2024-04-10 22:22:50 +02:00

29 lines
671 B
YAML

---
- name: "[Hyprland] Install"
kewlfft.aur.aur:
name:
- hyprland
- hyprlock-git
state: present
- name: "[Hyprland] Create config folder"
ansible.builtin.file:
mode: 0755
path: "{{ ansible_user_dir }}/.config/hypr"
state: directory
- name: "[Hyprland] Configure"
ansible.builtin.copy:
src: "./"
dest: "{{ ansible_user_dir }}/.config/hypr"
- name: "[Hyprland] Configure startup"
ansible.builtin.template:
src: startup.conf
dest: "{{ ansible_user_dir }}/.config/hypr"
- name: "[Hyprland] Configure windowrules"
ansible.builtin.template:
src: windowrule.conf
dest: "{{ ansible_user_dir }}/.config/hypr"