From 9b5249af541353d9de39c289a9eddf5a38097ef5 Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Mon, 27 Jan 2025 16:00:05 +0100 Subject: [PATCH] refactor: improve GNOME Shell icon management and regenerate icon cache --- config/ansible/tasks/workstations/workstation.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config/ansible/tasks/workstations/workstation.yml b/config/ansible/tasks/workstations/workstation.yml index e2606a4..c2d7a49 100644 --- a/config/ansible/tasks/workstations/workstation.yml +++ b/config/ansible/tasks/workstations/workstation.yml @@ -31,7 +31,15 @@ # Steam and it's dependencies - steam - steam-devices - # Missing icons in GNOME Shell + # Missing icons in GNOME Shell (If not working, reset your icon theme with `gsettings reset gsettings reset org.gnome.desktop.interface icon-theme`) - gdk-pixbuf2-modules-extra + - adwaita-icon-theme + - gnome-icon-theme state: present become: true + +- name: Regenerate GNOME Icon Cache + ansible.builtin.command: + cmd: gtk-update-icon-cache /usr/share/icons/gnome + creates: /usr/share/icons/gnome/icon-theme.cache + become: true