Add rofi config deployment for i3 desktop profile

This commit is contained in:
Fabio Scotto di Santolo
2026-03-16 16:48:32 +01:00
parent 748fcee8ca
commit fbfd7234a8

View File

@@ -13,6 +13,7 @@
- "{{ user_home }}/.config/dunst" - "{{ user_home }}/.config/dunst"
- "{{ user_home }}/.config/alacritty" - "{{ user_home }}/.config/alacritty"
- "{{ user_home }}/.config/Thunar" - "{{ user_home }}/.config/Thunar"
- "{{ user_home }}/.config/rofi"
- name: Enable gnome-keyring PAM auth hook - name: Enable gnome-keyring PAM auth hook
ansible.builtin.lineinfile: ansible.builtin.lineinfile:
@@ -68,6 +69,14 @@
group: "{{ user_group }}" group: "{{ user_group }}"
mode: preserve mode: preserve
- name: Copy rofi config
ansible.builtin.copy:
src: "{{ playbook_dir }}/../dotfiles/desktop/.config/rofi/"
dest: "{{ user_home }}/.config/rofi/"
owner: "{{ username }}"
group: "{{ user_group }}"
mode: preserve
- name: Copy .xinitrc - name: Copy .xinitrc
ansible.builtin.copy: ansible.builtin.copy:
src: "{{ playbook_dir }}/../dotfiles/desktop/.xinitrc" src: "{{ playbook_dir }}/../dotfiles/desktop/.xinitrc"