Jump to content

Floating.Point

Member
  • Posts

    124
  • Joined

  • Last visited

  • Days Won

    6

Posts posted by Floating.Point

  1. The (amazing) new markdown view is showing an ugly implementation of the system default scrollbars, rather than the (lovely) scrollbars used elsewhere inside of Alfred.

     

    here in the appearance panel my scrollbar is a nice skinny orange bar

    image.thumb.jpeg.c4ae64caede2b1bcac98d29f0c457389.jpeg

     

    But in the Markdown view its a system default scrollbar with square edges and looks bad

    image.thumb.png.698ea8bbef8b880b291d50efecf562c6.png

     

  2. Currently using the clipboard (/snippet) manager will hijack your current Alfred session. It would be nice if it was possible to float this on top of the current Alfred session instead. 

     

    Update, just to clarify what I'm getting at here: 

     

    I invoke the clipboard manager with a hotkey. If I am in the middle of doing something in Alfred and I want to use an item from the clipboard, when I invoke the clipboard manager it discards my existing Alfred session and redirects me to the clipboard manager. What I would like instead is that the clipboard manager appears on top of my current Alfred session, and when it closes, what remains underneath is Alfred just as I left it.

  3. Ah yeah I don’t want to do anything hacky. I think I have always just incorrectly assumed ‘always’ mode would show a scroll bar even when there was nothing to scroll. Don’t I feel foolish now, learning this is not the case. Changing from ‘automatic’ mode to ‘always’ mode is all I needed to do. I assume this is Alfred’s default too and I must have just changed it years ago and never thought twice about it. Thanks for humouring me and as always being so gracious and helpful 😊

  4. Sometimes its not clear that there are more items available 'below Alfred's fold'.

    For example, in this list it's not clear that there are actually more options to choose from:

    image.thumb.png.61b164ad4772ddfa1cdb341c540b5c83.png

    image.thumb.png.27b0bcccdde5ee161ad6614f231b2c05.png

     

    So I thought I could get clever in a script filter and insert some helper text when there's too many entries

     

    # Overflow check
    if len(input_json["items"]) > 9:
        # Add "subtitle" to the last visible entry
        input_json["items"][8]["subtitle"] = "Scroll for more swatches…"

     

    image.thumb.png.0c06e0a5c3caea25aab2ba8e16ddafc1.png

     

    But this will only work as long as the user has chosen to show 9 items

    image.thumb.png.f464300840a4e269281d7483361a32a4.png

     

    So I'm wondering if there's any way to access this "I want to see" value? I have a feeling it's not possible, because if it were, it would be among the Workflow Script Environment Variables. But maybe there's another way to determine the total entries Alfred is showing?

     

  5. I have been toying around with changing workflow object icons on the fly.

     

    This is as simple as replacing the .png file in the workflow folder –

    ${alfred_preferences}/workflows/${alfred_workflow_uid}/UUID.png

     

    Below is an example colour picker workflow, where the icon is updating to reflect changes made to the foreground and background colours.

     

    I really really like this, but am wondering if there anything I should watch out for here? (for example, Alfred isn't going to suddenly change the UUID of the associated icon or anything like that?)

     

    Notice the icon in the top right changing as I adjust settings:

     

     

  6. Yeah that's fine, not a big deal at all

     

    To expand on my original goals – I've put together a simple colour swatch manager and it's the topmost entries here that I was hoping to keep 'pinned'.

     

    image.thumb.jpeg.62292bae9b743c935f27f492efb381c6.jpeg

     

    I am already using the option modifier as a way to delete entries (which feels really nice). But I don't think I want to hide these other actions behind modifiers. In this case I think the value of not needing to remember a modifier is higher than the value of having the list dynamically sorted.

     

    Here's it is in action

     

     

     

  7. Hey there,

     

     

    I love the way Alfred can handle dynamically sorting List / Script Filters, such that frequently used items float to the top of the list – this is really handy. 

     

    But I am hoping there might be a way to kind of 'pin' one entry to the top of the list, so it is always the first entry, and all subsequent entries are shown according to Alfred's sorting wizardry.

     

    Is this in the realm of possibility with Script Filters? or currently not possible?

     

     

     

     

  8. I might be misremembering, but I'm pretty sure aliases in Alfred have been successfully showing pretty icons. But (and again, unless Im misremembering) it seems that with a recent update, alias icons are back to the generic unknown file icon.

     

    Update. Sorry to resurrect such an old thread, I just came to submit a bug report about this issue and did the old 'search for an existing topic' before posting. 

  9. Howdy Vitor,

     

    Firstly thank you for this insanely helpful workflow. Such a superpower to add to Alfred! (Another superpower! 🦸‍♂️)

     

    I assume the limitations preventing access to minimising windows might be the reason this isn't possible, but couldn't hurt to ask…

     

    Is there any change this could be configured to find all open apps (even on different spaces?) or even those that are fullscreen?

     

    Cheers, Nathan

  10. You've brought up something I didn't think about previously @Andrew. It seems that MacOS's Icons don't take up their entire canvas. Rather they occupy about 80%. So any custom icons that fill their canvas are going to look chonky compared to those using standard system icons.

     

    Here is Safari's icon opened in Photoshop

    image.png.fe8f30de92c1996cf945d1db7b6b7acb.png

     

    I did a little digging and found mention of this on this page

     

     

    Quote

     

    Define a margin that measures about 10% of the image canvas and keep most of the image within it. Although parts of the image can extend into this margin for optical alignment, it’s best when the image occupies about 80% of the image canvas. For example, most of the center image in a 256x256 px canvas would fit in an area that measures 205x205 px.

     

     

    Diagram of the solid pink heart shape within blue margins that measure 10 percent of the canvas width.

     

     

     

    I think I will implement this margin in my future personal icons (as well as updating the Icon Generator workflow)

     

×
×
  • Create New...