Search IconIcon to open search

Amethyst

Written May 1, 2022

    # Tips

    • When using an app and you want some of it’s windows to be floated (aka, not managed by Amethyst) you can specify the window’s title. Often times the types of windows you would like to be floated don’t have a visible title and it can be a chore to detemine it’s title. This Applescript will give you all the titles of active windows:
    1
    2
    3
    4
    5
    
    tell application "System Events"
    delay 2
    set allWindows to name of window of processes whose visible is true
    
    end tell
    

    Window Management for MacOS

    Interactive Graph