Allow themes to use a custom icon theme via the icons.theme file

They get to pick from the Yaru color set
This commit is contained in:
David Heinemeier Hansson
2025-08-01 14:23:29 +02:00
parent 95de571809
commit 3d22840543
13 changed files with 31 additions and 0 deletions

9
migrations/1754047941.sh Normal file
View File

@ -0,0 +1,9 @@
echo "Add icon theme coloring"
if ! yay -! yaru-icon-theme &>/dev/null; then
yay -S --noconfirm yaru-icon-theme
if [[ -f ~/.config/omarchy/current/theme/icons.theme ]]; then
gsettings set org.gnome.desktop.interface icon-theme "$(<~/.config/omarchy/current/theme/icons.theme)"
fi
fi