diff --git a/playbooks/install_morefine.yaml b/playbooks/install_morefine.yaml index b2eab8e..8c9d485 100644 --- a/playbooks/install_morefine.yaml +++ b/playbooks/install_morefine.yaml @@ -66,4 +66,29 @@ become: true ansible.builtin.apt: name: spotify-client - update_cache: yes \ No newline at end of file + update_cache: yes + - name: Get repo + become: true + ansible.builtin.shell: >- + add-apt-repository ppa:danielrichter2007/grub-customizer + - name: Install grub-customizer + become: true + ansible.builtin.apt: + name: grub-customizer + update_cache: yes + + - name: Get repo element-desktop + become: true + ansible.builtin.shell: >- + wget -O /usr/share/keyrings/element-io-archive-keyring.gpg https://packages.element.io/debian/element-io-archive-keyring.gpg + - name: Get repo element-desktop + become: true + ansible.builtin.shell: >- + echo "deb [signed-by=/usr/share/keyrings/element-io-archive-keyring.gpg] https://packages.element.io/debian/ default main" | sudo tee /etc/apt/sources.list.d/element-io.list + - name: Install element-desktop + become: true + ansible.builtin.apt: + name: element-desktop + update_cache: yes + + \ No newline at end of file