Replies: 2 comments 3 replies
-
|
Thanks for searching prior to asking. There isn't really a way to do this at this time. You can setup an app layout to load all of the chrome windows (although the fullscreen one would be maximized size in the layout, not "full screened"). Being able to specify URLs to load would require some scripting behavior to be built into the app to allow something like executing cmd+L and entering a specified URL. This starts to reach outside the scope of what I would like to add to to Rectangle Pro, since it's more about window management and not as much about scripting, but I'm always open to ideas, particularly if there is strong demand. |
Beta Was this translation helpful? Give feedback.
-
|
thanks @rxhanson! I realized my request might be not in the core feature of Rectangle Pro right now, but I think it makes more sense for certain workflows that essentially around web apps - for example if you're office worker using Google Suite, you might spend most of your time using various "apps" in the browser, switching tabs between email, slides, docs etc. So something to consider! -- List of URLs and layout keys
set urlLayoutList to {¬
{URL:"https://nok.se", layout:"left-half"}, ¬
{URL:"https://translate.google.com/?sl=en&tl=sv", layout:"top-right"}, ¬
{URL:"https://translate.google.com/?sl=sv&tl=en", layout:"bottom-right"} ¬
}
repeat with i from 1 to length of urlLayoutList
set urlLayout to item i of urlLayoutList
set urlItem to URL of urlLayout
set layoutItem to layout of urlLayout
-- display dialog "Page: " & urlItem & " Layout: " & layoutItem
tell application "Safari"
make new document with properties {URL:urlItem}
activate
delay 1
end tell
set layoutStr to "rectangle-pro://execute-action?name=" & layoutItem
do shell script "open -g \"" & layoutStr & "\""
end repeathttps://gist.github.com/haschdl/0187b9068c27f16a7b731cc67b0ff827 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Is this possible? I tried multiple combinations of search words (page, webpage, URL, chrome...) and couldn't find an answer.
Is there a way (UI or scripted) to have a layout to be a combination of window positions + a given web page URL?
My use-case is studying, in particular studying a new language. I have 4 pages that I need to open every single time I start studying (at lest 6 times a week): the course material page (half left, display 2), google translate A=>B (top-right, display 2), google translate B=>A (bottom-right, display 2), Notion app (Full screen, display 1) - you get the gist.
Rectangle Pro user, MacOS
Beta Was this translation helpful? Give feedback.
All reactions