Help binding basecamp to a key in v4 #7611
|
I upgraded to v4 and decided to add a keybind for the o.bind("SUPER + SHIFT + ALT + H", "Basecamp", "basecamp")I was able to get it working by launching it as a webapp: o.bind("SUPER + SHIFT + ALT + H", "Basecamp", { webapp = "https://launchpad.37signals.com", focus = true })I'm curious about why the first command didn't work. |
Answered by
CasperKristiansson
Aug 20, 2026
Replies: 1 comment 1 reply
|
That first binding asks Hyprland to execute a program literally named So your second binding is the intended form: o.bind("SUPER + SHIFT + ALT + H", "Basecamp", {
webapp = "https://launchpad.37signals.com",
focus = true,
})It doesn't merely work around the issue—it tells Omarchy that Basecamp is a web app, which also lets |
1 reply
Answer selected by
caleb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That first binding asks Hyprland to execute a program literally named
basecamp, but Omarchy v4 doesn't install one. Basecamp is shipped asBasecamp.desktop; that desktop entry launchesomarchy-launch-webapp https://launchpad.37signals.com.So your second binding is the intended form:
It doesn't merely work around the issue—it tells Omarchy that Basecamp is a web app, which also lets
focus = truereuse its existing window.