Replies: 11 comments 18 replies
-
Sounds amazing. I've been a LaunchBar user for a decade. I would happily pay Obdev for an upgrade or support Roey get this feature. |
Beta Was this translation helpful? Give feedback.
-
As an avid ⇧ ⌘ / user to search and engage menu bar actions, I would absolutely prefer to use LaunchBar. For all the reasons you described above, @Ptujec, LaunchBar is a better tool. What's the next step?
|
Beta Was this translation helpful? Give feedback.
-
Thanks for pointing out Finbar hadn't come across that yet. I currently use Paletro.app which feels very much like LaunchBar for the Menu Bar to me. My shortcut being I have tried out the Menu Bar Search action by Edward Cheng that is here: https://github.com/ewlcheng/launchbar-actions It's great to see the renewed interest in the LaunchBar like app space. Thank you for all the great work you have put into your actions. They add to LaunchBar being indispensable to me. |
Beta Was this translation helpful? Give feedback.
-
Hi! My name’s Roey and i’m the developer behind Finbar. Integrations with 3rd party apps such as LaunchBar are already in the works and hope to add thme in next version or two. |
Beta Was this translation helpful? Give feedback.
-
A week behind schedule, but as of Finbar v1.3 (released today), a command line tool named Read more in Finbar’s user guide. Enjoy! |
Beta Was this translation helpful? Give feedback.
-
Hi folks, thank you so much for purchases and support — it’s truly heartwarming. @Ptujec, I scaffolded an LB action for Finbar which seems to work really well, I’d appreciate it if you’d give it a shot. // LaunchBar Action Script
const finbarCLI = "/Applications/Finbar.app/Contents/MacOS/finbar-cli";
function run() {
return JSON.parse(LaunchBar.execute(finbarCLI, "list")).map(
({ title, path, bundleID, indices }) => ({
title,
subtitle: path.join(" > "),
icon: bundleID,
action: "click",
actionArgument: { indices, title },
})
);
}
function click({ indices, title }) {
LaunchBar.execute(finbarCLI, "select", ...indices, "--title", title);
} If it works for you, I’ll open up a pull request. Sadly, between work and working on Finbar I don’t have much time left for working on LB actions 🤣 So once we’ll be satisfied from this action I’ll make an “official” integration on Finbar’s home page (similar to what Dash does). P. S. — telling from your code snippet I can already see I need to add a flag to |
Beta Was this translation helpful? Give feedback.
-
The fault is actually mine (and the missing docs).
… On 5 Mar 2023, at 11:07, Christian Bender ***@***.***> wrote:
My bad. Totally missed it. Thanks
—
Reply to this email directly, view it on GitHub <#19 (reply in thread)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AI2JZDLLTOJJYXE6NIJEO2TW2RJWBANCNFSM6AAAAAAVB6X7ZA>.
You are receiving this because you were mentioned.
|
Beta Was this translation helpful? Give feedback.
-
Action powered by Finbar is up here: https://github.com/Ptujec/LaunchBar/tree/master/Menu-Bar#readme |
Beta Was this translation helpful? Give feedback.
-
Amazing, thank you. I’ll link to it in Finbar’s user guide soon.
… On 5 Mar 2023, at 14:28, Christian Bender ***@***.***> wrote:
Action powered by Finbar is up here: https://github.com/Ptujec/LaunchBar/tree/master/Menu-Bar#readme
—
Reply to this email directly, view it on GitHub <#19 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AI2JZDNW5LVQTJSBWC4SR7LW2SBGJANCNFSM6AAAAAAVB6X7ZA>.
You are receiving this because you were mentioned.
|
Beta Was this translation helpful? Give feedback.
-
Love this. Thank you all for your combined effort! 🎉 |
Beta Was this translation helpful? Give feedback.
-
Hi folks, sorry for taking a while, but today I released version 1.5 of my app. You can now exclude menu items directly from the command line with the As always, I encourage you to report any issues or request new features through Finbar’s issue tracker, which I monitor closely. Thanks and enjoy! |
Beta Was this translation helpful? Give feedback.
-
When I first came across actions/extension that let you access menubar items via a launcher I didn’t really get it. Where is the added benefit compared to the built in search?
With some of the solutions I really didn’t see any. This however changed dramatically a while ago.
I can’t really remember how and why, but I tried it again, when I updated my LaunchBar setup with the purchase of my MBA M1. Or maybe it was related to Raycast advertising it as a feature.
Here is why I’m using it all the time now:
Both of those factors are important. The first one should be obvious. The main benefit of the second is that it utilizes the superpower of LB. You’ll find stuff more easily without knowing the exact name. It can be triggered simply by space (which is convenient because my thumb is still hovering over it after bringing up LaunchBar). Plus LB learns and remembers your preferences. So every time I press
P
in Pages it’ll open the PDF export dialogue.C
in Pixelmator Pro opens the canvas size dialogue, …I absolutely love it. No need to set up and remember custom shortcuts.
Why is this a discussion?
I feel LB users would really benefit from this kind of functionality, but currently there is no action for it that works. Unfortunately I can not share mine, because it is based on an executable, which is originally part of an Alfred Workflow. You would be running into the same issue I did with Jordi's action.
I don’t feel like paying 100$ each year to sign my actions to share them for free.
Roey Biran has a dedicated app for this called Finbar. I would be more then happy to support it if he could offer an integration that would work as described above. Or this functionality could be directly integrated by Obdev.
What do you think? Would you use something like that? Questions?
Beta Was this translation helpful? Give feedback.
All reactions