Adwaita Colors can be made via a script to match the Manjaro colors. It also contains the Morewaita icons, which cover the missing icons for the Manjaro apps.
Here is the script I used to create Adwaita-maia after installing adwaita-colors-icon-theme and morewaita-icon-theme:
#!/bin/bash
rm -r /usr/share/icons/Adwaita-maia
cp -r /usr/share/icons/Adwaita-teal /usr/share/icons/Adwaita-maia
rm -r /usr/share/icons/search-symbolic.svg
cp -r /usr/share/icons/Papirus/symbolic/actions/edit-find-symbolic.svg /usr/share/icons/search-symbolic.svg
sed -i 's/Adwaita-teal/Adwaita-maia/g' /usr/share/icons/Adwaita-maia/index.theme
cp -r /usr/share/icons/Papirus/16x16/panel/mintupdate-up-to-date.svg /usr/share/icons/MoreWaita/symbolic/status/pamac-tray-no-update.svg
cp -r /usr/share/icons/Papirus/16x16/panel/mintupdate-updates-available.svg /usr/share/icons/MoreWaita/symbolic/status/pamac-tray-update.svg
for file in /usr/share/icons/MoreWaita/symbolic/status/*.svg; do
if [[ -f "$file" ]]; then
echo "Processing file: $file"
sed -i 's/dfdfdf/ffffff/g' "$file"
fi
done
for file in /usr/share/icons/Adwaita-maia/scalable/places/*.svg; do
if [[ -f "$file" ]]; then
echo "Processing file: $file"
sed -i 's/129eb0/08382e/g' "$file"
sed -i 's/9edae6/16a085/g' "$file"
fi
done
for file in /usr/share/icons/Adwaita-maia/scalable/apps/*.svg; do
if [[ -f "$file" ]]; then
echo "Processing file: $file"
sed -i 's/007184/08382e/g' "$file"
sed -i 's/2190a4/16a085/g' "$file"
sed -i 's/40c1d9/16a085/g' "$file"
fi
done
for file in /usr/share/icons/Adwaita-maia/scalable/mimetypes/*.svg; do
if [[ -f "$file" ]]; then
echo "Processing file: $file"
sed -i 's/007184/08382e/g' "$file"
sed -i 's/9edae6/16a085/g' "$file"
sed -i 's/2190a4/16a085/g' "$file"
sed -i 's/129eb0/08382e/g' "$file"
fi
done
for file in /usr/share/icons/Adwaita-maia/scalable/status/*.svg; do
if [[ -f "$file" ]]; then
echo "Processing file: $file"
sed -i 's/129eb0/08382e/g' "$file"
sed -i 's/9edae6/16a085/g' "$file"
fi
done
Edit: Forgot to color some icons, fixed. It now also replaces the red Pamac tray icon with the one from Papirus.
Edit 2: Changed Pamac tray to white. Fixed missing no results icon in Pamac.
I’m aware of the projects you listed as well as others. Thing is, we use the Papirus icon theme instead of Adwaita. A script for Papirus Folders would be better.
Having said that, I may consider the request since there are options using Morewaita.
That could be good, but the thing is some people don’t like these material icons or just really want Adwaita and I think it should be avaliable as an option
I’ve added adwaita-colors-icon-theme and morewaita-icon-theme to the repos. You can see the changes for the Adwaita-maia coloring in the PKGBUILD for the former.
When I select it with the inspector tool it says that the icon is ‘search-symbolic.svg’, and there is no such icon in Adwaita, only ‘system-search-symbolic’.