editor
editor copied to clipboard
Cannot launch bridge app when `/usr/sbin/bridge` exist
Summary
Some linux distro has a tool call bridge, so Exec=bridge is ambiguous.
$ cat /usr/share/applications/bridge.desktop
[Desktop Entry]
Categories=Development;
Exec=bridge
Icon=bridge
Name=bridge
Terminal=false
Type=Application
I fix this by specify the file path
- Exec=bridge
+ Exec=/usr/bin/bridge
To Reproduce Steps to reproduce the behavior:
- Use .deb to install bridge
- Open bridge
- Not open
Observed behavior Nothing happened
Expected behavior Open the bridge
Screenshots / File Attachments If applicable, add screenshots to help explain your problem or upload files to help us reproduce the bug.
Platform (please complete the following information):
- OS: Pop OS 22.04
- App Version: 2.7.10
Additional context Add any other context about the problem here.
Thank you for reporting 👍 I'll look into this but I'm not too familiar with Linux. I assume this would just be a small configuration fix.