Skip to content

Commit

Permalink
move pfp and wallpaper & premission improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Diana Ward committed Jul 29, 2024
1 parent 301971b commit ff7f159
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ https://gitlab.com/dianaw353/dotfiles/-/releases/v1.0.3
--------------------------------------------------------
**Fixes**
- Add playerctl
- Move avatar to pfp and mountain to wallpaper in Pictures
- Premission improvements

Version 1.0.2
https://gitlab.com/dianaw353/dotfiles/-/releases/v1.0.2
Expand Down
File renamed without changes
File renamed without changes
4 changes: 2 additions & 2 deletions roles/greetd/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

- name: "Greetd ags pfp| Configure ags greetd pfp"
ansible.builtin.copy:
src: "{{ playbook_dir }}/assets/avatar.jpg"
src: "{{ playbook_dir }}/assets/pfp/avatar.jpg"
dest: "/etc/greetd/ags/avatar.jpg"
mode: "0644"
directory_mode: "0755"
Expand All @@ -40,7 +40,7 @@

- name: "Greetd ags wallpaper| Configure ags greetd wallpaper"
ansible.builtin.copy:
src: "{{ playbook_dir }}/assets/mountain.png"
src: "{{ playbook_dir }}/assets/wallpaper/mountain.png"
dest: "/etc/greetd/ags/background.png"
mode: "0644"
directory_mode: "0755"
Expand Down
35 changes: 33 additions & 2 deletions roles/hyprland/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,45 @@
directory_mode: "0755"
force: true

- name: "Move hyprpaper wallpaper"
- name: "Move wallpaper pics"
ansible.builtin.copy:
src: "{{ playbook_dir }}/assets/mountain.png"
src: "{{ playbook_dir }}/assets/wallpaper"
dest: "{{ ansible_user_dir }}/Pictures/"
mode: "0644"
directory_mode: "0755"
force: true
become: true
become_user: "{{ user }}"

- name: "Move pfp pics"
ansible.builtin.copy:
src: "{{ playbook_dir }}/assets/pfp"
dest: "{{ ansible_user_dir }}/Pictures"
mode: "0644"
directory_mode: "0755"
force: true
become: true
become_user: "{{ user }}"

- name: "Move active pfp"
ansible.builtin.copy:
src: "{{ playbook_dir }}/assets/pfp/avatar.jpg"
dest: "{{ ansible_user_dir }}/.config/avatar.jpg"
mode: "0644"
directory_mode: "0755"
force: true
become: true
become_user: "{{ user }}"

- name: "Move active wallpaper"
ansible.builtin.copy:
src: "{{ playbook_dir }}/assets/wallpaper/mountain.png"
dest: "{{ ansible_user_dir }}/.config/background.png"
mode: "0644"
directory_mode: "0755"
force: true
become: true
become_user: "{{ user }}"

- name: Update hyprland autostart config
ansible.builtin.template:
Expand Down

0 comments on commit ff7f159

Please sign in to comment.