blob: 8e1134b662fd517d09745f1c402468960f62eec4 [file] [log] [blame]
{%- from 'macros' import input with context -%}
{{ hash_bang }}
-- Copyright 2021 The Chromium Authors. All rights reserved.
-- Use of this source code is governed by a BSD-style license that can be
-- found in the LICENSE file.
-- This script navigates to |idle_site| and remains on it for |delay| seconds.
tell application "{{ browser }}"
-- If {{ browser }} is already started then just bring
-- it to the forefront otherwise open it.
if it is running then
reopen
else
activate
end if
set bounds of front window to {0, 0, 1920, 1080}
delay 10
open location "{{ idle_site }}"
delay {{ delay }}
activate
end tell