Jump to content

alfredpanda

Member
  • Posts

    106
  • Joined

  • Last visited

Reputation Activity

  1. Like
    alfredpanda reacted to Andrew in Hotkey trigger doesn't output macOS selection   
    @alfredpanda change the hotkey trigger mode to "Simulate modifier keys released" or "Wait until modifier keys are released", otherwise when Alfred simulates the ⌘C, you'll still be holding the option key. You can do this by clicking the teal symbols to the right of the hotkey config field.
     
    Note that Alfred's default option is Simulate, so this should work by default.
  2. Like
    alfredpanda reacted to giovanni in Slack set status   
    yes @alfredpanda there seem to be a few (pre-existing I think, or induced by Slack changes) bugs. What did clear do? Just reset the status, or also resume notifications? Currently it only resets status. Anyway, try this version, I also added the workflow configuration. 
  3. Like
    alfredpanda reacted to vitor in Alfred not dispatching key combo   
    On the contrary, per the debugger there’s nothing to indicate it isn’t.
     

    If we don’t have the full picture, meaning at least the exact BTT action you’re using, no one can accurately test your case to understand it 
    it themselves and help you.
  4. Like
    alfredpanda got a reaction from Junior Saldanha in Alfred Workflow | CoinMarketCap with all cryptos and logos   
    Thank you for this! 
  5. Like
    alfredpanda got a reaction from vitor in Calm Notifications — Toggle Do Not Disturb Focus Mode   
    Thanks for the on-going updates here - this is still probably my most-used workflow.
     
    In the latest update I noticed the time, e.g "Enable until 11:42" - but the time for me is an hour behind. I am in the UK where we're on BST. Is there something I should change here?
     
    Thanks!
     

  6. Like
    alfredpanda reacted to giovanni in Slack set status   
    that is how it was, as Argument is required. If you want to use the default set the Argument to optional.
  7. Like
    alfredpanda reacted to giovanni in Slack set status   
    @alfredpanda here you go. Please note that some status icons (e.g. :brb:) are not native to Slack and need to be installed (or edited). If others are interested I can make a more refined version where these icons are set in Workflow configuration etc.
  8. Like
    alfredpanda got a reaction from vitor in Replace utility REGEX help   
    Thank you, my bad for not understanding. 
     
    It works! I really appreciate the help.
     

  9. Like
    alfredpanda reacted to vitor in Replace utility REGEX help   
    That’s exactly what the Automation Task does. You only have to ensure it’s a valid URL beforehand so you can e.g. have a Conditional which checks for that and add it if necessary:

  10. Like
    alfredpanda reacted to vitor in Replace utility REGEX help   
    The text you’ve placed in with is the regular expression. You want that in the first text field, not the second. On the second field you add the replacing text, which in your case would be $1 (first capture group). But the regex text is itself incorrect for the text field, you need to remove the first / and the trailing /img, those are relevant in different contexts.
     
    If all you want is to extract the domain from a given URL, there’s an Automation Task for that (Get URL Hostname). It does require that the URL be valid, i.e. contain the https://.

    However, the workflow doesn’t seem set up to do what you describe, you’re not getting anything from the clipboard.

    If the above doesn’t fix your problem, please describe your ultimate goal rather than the last step in the chain so we can arrive at the best solution.
  11. Like
    alfredpanda reacted to stephancasas in Sum Clipboard History   
    Sumboard — Add numbers from Alfred's pasteboard history
     

     
    Hi, all:
     
    I made this workflow to sum the most recently-copied numbers in Alfred's pasteboard history.
     
    Enjoy!
  12. Like
    alfredpanda reacted to vitor in Help creating a simple text replacement workflow   
    Seems like you’re looking for the Replace Utility, and perhaps the Argument and Variables Utility to save some of those as variables (such as the original).
  13. Like
    alfredpanda reacted to vitor in MarkdownTransform — Convert Markdown to other formats   
    @alfredpanda The Workflow works on selected text, not files. I guess I can add a File Action too, if you need it specifically. No ETA, though it shouldn’t happen too far off. It will make the Workflow require Alfred 5, since the Read File Contents Automation Task is ideal for it.
  14. Like
    alfredpanda got a reaction from vitor in Calm Notifications — Toggle Do Not Disturb Focus Mode   
    FYI I'm sure this version runs a lot better. Seems like the first time I use it each day its slower, but then haven't had it again. Thank you!
  15. Thanks
    alfredpanda reacted to vitor in Making Python 2 Workflows work on macOS Monterey 12.3 and above   
    Added.
     
    But consider Fuzzy File Search as a replacement.
     
     
    That doesn’t need functionality fixes, it’s only the auto-updater which is done in Python 2. I’ve submitted a PR to change that.
  16. Like
    alfredpanda reacted to Andrew in Alfred 5 Sneak Peek - Take a look at what's coming in Alfred 5 :)   
    Once Alfred 5 is out and settled, the Alfred Workflow Gallery will be our top priority, including integration directly into Alfred.
     
    The Workflow foundation changes I've made in Alfred 5 pave the way for some really exiting new features (for Alfred 5.1, 5.2 etc). We'll be sharing details in due course!
     
    Cheers,
    Andrew  
  17. Like
    alfredpanda got a reaction from darioangelo in Alfred 5 Sneak Peek - Take a look at what's coming in Alfred 5 :)   
    Looking forward to the Workflow Gallery - it seems most in demand.
  18. Like
    alfredpanda reacted to vitor in Calm Notifications — Toggle Do Not Disturb Focus Mode   
    Running the command right after getting the delay won’t work, because what (presumably) causes the delay is run once then cached for a while. Try this version and see if you still get the delay. It should still happen the first time, but no more after that.
  19. Like
    alfredpanda reacted to vitor in Download Media — Download video and audio from web pages   
    It works with sites supported by yt-dlp.
  20. Like
    alfredpanda reacted to vitor in Calm Notifications — Toggle Do Not Disturb Focus Mode   
    You can run the above command once in a while to see if it’s the one being slow. If it happens occasionally and those are after you haven’t used it in a while, I’d say it’s macOS checking the script. I have an idea which might work, but it’ll have to wait for the mentioned rewrite.
  21. Like
    alfredpanda reacted to vitor in Calm Notifications — Toggle Do Not Disturb Focus Mode   
    Thank you for the kind words!
     
     
    Never that long! For reference, the way I’m getting the status is by running the following command (you can try it in a terminal):
     
    /usr/bin/defaults read com.apple.controlcenter 'NSStatusItem Visible FocusModes'  
    If it returns 0, Do Not Disturb is off; if 1, it’s on.
     
    That command may be taking long to execute on your machine, for some reason. Or it may be the check Apple does on executables. Do note the Workflow has an External Triggers, so if you don’t really care about the feedback and just want to turn it on or off, you can take advantage of that.

    I’ll eventually rewrite that part of the Workflow (so it no longer needs Ruby) and will check if macOS 13 has another way to check the status.
  22. Like
    alfredpanda reacted to Vero in TinyPNG   
    @alfredpanda Not to take away from the creator's own workflow, but if you're having issues with it, you may also want to consider our official TinyPNG workflow here:
    https://www.alfredapp.com/blog/tips-and-tricks/tiny-png-workflow-compress-images/
  23. Like
    alfredpanda got a reaction from joeynotjoe in Emoji Taco - (downloads emoji from unicode.org)   
    @mochiguy I use this one now instead - works perfectly aside from the fact it seems to be missing a few emoji.
  24. Like
    alfredpanda got a reaction from vitor in Calm Notifications — Toggle Do Not Disturb Focus Mode   
    One more thing I love about this is how my iPhone will sync the DND status. I'm now using this multiple times a day. Thanks Vitor!
  25. Like
    alfredpanda reacted to vitor in Calm Notifications — Toggle Do Not Disturb Focus Mode   
    Great! Glad to read that. Hopefully by using a Shortcut it means imApple won’t break the functionality in a future macOS version.
     

    Yes. Baby bottle to calm down, battery to energise.
×
×
  • Create New...