/ hammerspoon / extensions / launchers.lua
launchers.lua
1  ChromeWithProfile = function()
2    local profile = 'Default'
3    local url = 'https://meet.google.com'
4    local t = hs.task.new('/Applications/Google Chrome.app/Contents/MacOS/Google Chrome', nil, function()
5      return false
6    end, { '--kiosk', '--profile-directory=' .. profile, url })
7    t:start()
8  end