I installed scrcpy snap in my ubuntu 20.04. but I can't find such application in my applications menu. I have to open the terminal for running it. Is it possible to create a launcher for running it? Please help
Asked
Active
Viewed 1,160 times
1 Answers
4
Create a .desktop file (you could use nano instead of vim.tiny or whatever you like):
sudo vim.tiny /usr/share/applications/scrcpy.desktop
Add the following contents.
[Desktop Entry]
Version=1.0
Type=Application
Name=scrcpy
GenericName=scrcpy
Comment=Screen mirroring application
Exec=scrcpy %F
Icon=phone-symbolic
Terminal=false
X-MultipleArgs=false
Categories=Development;GTK;
StartupNotify=true
It should be available just after creation.
Archisman Panigrahi
- 38,814
Gryu
- 8,002
- 9
- 37
- 53