-
Content Count
157 -
Joined
-
Last visited
-
Days Won
6
luckman212 last won the day on August 1 2020
luckman212 had the most liked content!
About luckman212
-
Rank
Member
Recent Profile Visitors
1,635 profile views
-
macOS 11.2.2 Alfred 4.3.2.1221 When hitting my main Alfred hotkey (F11) his window usually appears instantly. But, I've noticed that during certain conditions, such as shortly after launching a slow-to-open app from the Dock (Excel, Photoshop, etc) the Alfred window does not appear. Instead, it seems to hang until the foreground app is in the "ready" state. (Not sure technically what this is called, but essentially it's ready to receive input - mouse clicks, key events, etc). This can also happen if the foreground app gets busy, doing some long running task etc.
-
gingerbeardman reacted to a post in a topic: Can Alfred search the Mac Keychain
-
@gingerbeardman Hey đ Happy Friday! I wasn't referring to your workflow actually. I was talking about Red Sweater's Usable Keychain Scripting (download).
-
luckman212 reacted to a post in a topic: Find 2Fa/two-factor auth codes in Messages
-
luckman212 reacted to a post in a topic: Better support for native app x-callbacks/deeplinks?
-
luckman212 reacted to a post in a topic: Better support for native app x-callbacks/deeplinks?
-
luckman212 reacted to a post in a topic: Better support for native app x-callbacks/deeplinks?
-
Odd text wrapping in Large Type output (bug?)
luckman212 replied to luckman212's topic in macOS 11.0 Big Sur Bugs & Issues
By Jove you've done it! Thanks again for this đ P.S. to anyone else who happened to download the test workflow above, I noticed a bug in it this morning- $RANDOM is 16-bit only (0-32767) so the jibberish output only contains words beginning with the letters {a,b,c}. Pretty boring. Newer versions of Bash support $SRANDOM which is 32-bit, so changing the shebang to #!/usr/local/bin/bash and RANDOM to SRANDOM will "fix" it. Also, swapping in gnu-sed for the built in macOS sed speeds up the loop by a factor of 2 for me. Here's an updated version in -
Odd text wrapping in Large Type output (bug?)
luckman212 replied to luckman212's topic in macOS 11.0 Big Sur Bugs & Issues
Thank you @Andrew ! Yes that's going to be very useful indeed. Much appreciated. Question: will it accept "0" as the wrap parameter? (disable wrapping completely). That would be nice- in case of a very long line, it could just disappear into the right edge of the largetype boundary. -
luckman212 reacted to a post in a topic: Odd text wrapping in Large Type output (bug?)
-
Chris Messina reacted to a post in a topic: Better support for native app x-callbacks/deeplinks?
-
Odd text wrapping in Large Type output (bug?)
luckman212 replied to luckman212's topic in macOS 11.0 Big Sur Bugs & Issues
Is anyone else having this problem? Sometimes I feel like this xkcd https://xkcd.com/979 -
In case anyone wants to really get nuts with fine-tuned URL scheme management, I suggest checking out Finicky. It's up on GitHub: https://github.com/johnste/finicky It lets you route URLs to different apps using rule-based logic. So you could make URLs containing *.google.com open in Chrome, and still keep Firefox as your default browser (example).
-
OAL reacted to a post in a topic: Search for hotkeys using ?hotkey query syntax
-
I'm trying to make a universal hotkey workflow that will "un-minimize" an app's windows- the ones with those pesky diamonds next to them e.g. No matter what I've tried, it's failing to work. I spent a good 3 hrs on this today and basically got nowhere. Here's a snippet of code that (mostly) works when run from Script Editor, but it fails miserably when put inside an Alfred osascript of NSAppleScript object: tell application (path to frontmost application as text) try set miniaturized of windows to false end try try set
-
Applescript not working corretly
luckman212 replied to vehovmar's topic in Workflow Help & Questions
@jdfwarrior or @vehovmar I know it's been many years... did you ever find a solution? -
macOS 11.2 Alfred 4.3.1.1214 I have some workflows that dump columnar text into LargeType. For some reason, the wrapping gets crazy sometimes. Long lines, especially ones containing many spaces end up with soft line breaks all over the place. I think pictures are worth 1000 words here, so here are a few as well as a workflow that you can download to replicate these: LargeType Odd Wrapping.alfredworkflow The workflow trigger is keyword "jibber" It generates 10 lines of random text, in 2 columns It accepts an optional parameter in the format
-
luckman212 reacted to a post in a topic: Highlight text, Typeface (bold, italic) for "Title", "Subtitle", "Largetype".
-
Search for hotkeys using ?hotkey query syntax
luckman212 replied to luckman212's topic in Discussion & Help
Forgot to add: Alfred 4.3.1.1214 macOS 11.2 -
llityslife reacted to a post in a topic: Multiple keywords to trigger the same script filter?
-
luckman212 reacted to a post in a topic: Laggy scrolling performance in large workflows
-
luckman212 reacted to a post in a topic: Only system command with no response is "Lock"
-
I was troubleshooting hotkeys today and realized you can type ?hotkey into Alfred to query for hotkey triggers. Neat. BUT, the filtering seems to be based on the Title and Subtitle only (they hotkey itself is not included) so e.g. this won't work: Is it possible to query using ?hotkey for the key itself (maybe a feature request...)