I seek the source code that creates the pop up menu that appears when a desktop launcher icon is right clicked on. I have already downloaded the Ubuntu 22.04 kernel source code, and did a grep search for a menu item text in all those downloaded source code files. I expected this would find the menu’s source code. But that search did not get any hits, so it looks to me like it is not in the kernel. Where is that source code?
The commands I used to download, and search:
git clone git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/jammy
grep -r “Allow Launching” “./jammy”
I verified that grep command by also searching for test text I copied from parts of that downloaded source code. That text was found.
I am seeking this source code because I suspect a bug in that code. I want to examine it, and step through its execution.