A snap that exports Pop!_OS GTK and icon themes.
Prerequisites for this snap:
sudo apt install pop-gtk-theme pop-icon-theme
To connect the theme to all apps which have available plugs to gtk-common-themes you can run:
for i in $(snap connections | grep gtk-common-themes:gtk-3-themes | awk '{print $2}'); do sudo snap connect $i pop-themes:gtk-3-themes; done
for i in $(snap connections | grep gtk-common-themes:gtk-2-themes | awk '{print $2}'); do sudo snap connect $i pop-themes:gtk-2-themes; done
for i in $(snap connections | grep gtk-common-themes:icon-themes | awk '{print $2}'); do sudo snap connect $i pop-themes:icon-themes; done