I’ve prepared the Yaru (Ubuntu) icon theme for LibreOffice so it can be installed easily on Raspberry Pi OS Trixie (Debian 13). It was originally made for Raspberry Pi OS GNOME, but it should also work well with other desktop environments.
This script downloads the ZIP file, extracts it, places the icon sets in the correct location, and then removes the temporary download:
Enable the theme in LibreOffice:
Open LibreOffice → Tools ▸ Options ▸ View ▸ Icon Theme → select Yaru
Or download the ZIP file below and extract it once only — inside are several ZIP files (the actual icon themes). These inner ZIPs must stay zipped and be placed into:
/usr/lib/libreoffice/share/config/
libreoffice_yaru-themes_2025-09-23.zip
![Image]()
If you ever want to remove it again:
This script downloads the ZIP file, extracts it, places the icon sets in the correct location, and then removes the temporary download:
Code:
sudo mkdir -p /usr/lib/libreoffice/share/config/ && \wget -O /tmp/libreoffice_yaru-themes_2025-09-23.zip https://wobbo.org/download/libreoffice_yaru-themes_2025-09-23.zip && \sudo unzip -o /tmp/libreoffice_yaru-themes_2025-09-23.zip -d /usr/lib/libreoffice/share/config/ 'images_yaru*.zip' && \cd /usr/lib/libreoffice/share/config/ && \for f in images_yaru*.zip; do [[ "$f" == *_dark.zip ]] && continue; sudo cp -f "$f" "${f%.zip}_dark.zip"; done && \sudo chmod -R a+rX /usr/lib/libreoffice/share/config/images_yaru* && \rm -f /tmp/libreoffice_yaru-themes_2025-09-23.zip && \cd -Enable the theme in LibreOffice:
Open LibreOffice → Tools ▸ Options ▸ View ▸ Icon Theme → select Yaru
Or download the ZIP file below and extract it once only — inside are several ZIP files (the actual icon themes). These inner ZIPs must stay zipped and be placed into:
/usr/lib/libreoffice/share/config/
libreoffice_yaru-themes_2025-09-23.zip

If you ever want to remove it again:
Code:
sudo rm -f /usr/lib/libreoffice/share/config/images_yaru*.zipStatistics: Posted by Wobbo — Wed Oct 22, 2025 10:54 am