Code: Select all
#Requires AutoHotkey 2.0+
#SingleInstance Force
windowTitle := 'Keep'
program := 'vivaldi.exe'
SetTitleMatchMode 2 ; Matching window's case-sensitive title starts with specified WinTitle
GroupAdd 'Keep', windowTitle ' ahk_exe ' program
If WinExist(group := 'ahk_group Keep')
WinActivate
else
Run 'C:\Program Files\Vivaldi\Application\vivaldi_proxy.exe --app=https://keep.google.com --w560 --h780 --custom-identifier="Keep"'
1 - I want to do something similar for ChatGPT, Google Bard, BBC Radio 4 and LBC Radio.
Do I need to run separate scripts for each, or can someone help or give me pointers towards how I could possibly reference a spreadsheet of websites I want to be able to run as apps.
2 - I can't get the window sizing to work.
Any help greatly appreciated.