how to get list of installed apps in ubuntu code example
Example: seeing all the installed apps i terminal
for app in /usr/share/applications/*.desktop; do echo "${app:24:-8}"; done
for app in /usr/share/applications/*.desktop; do echo "${app:24:-8}"; done