Is there a way to know which GTK version is installed using the command line?
apt-cache policy libgtk2.0-0 libgtk-3-0
(optionally pipe to grep Installed
)
or
dpkg -l libgtk2.0-0 libgtk-3-0
Try this:
dpkg -l libgtk2.0-0 libgtk-3-0
This will give info for both GTK 2 and 3.
--get-selections will show you the installed packages
dpkg --get-selections | grep gtk