Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
use Tk;
my $main = MainWindow->new (
-title => 'My Fullscreen Window',
-background => 'black',
);
my $w = $main->screenwidth;
my $h = $main->screenheight;
$main->overrideredirect (1);
$main->MoveToplevelWindow (0,0);
$main->geometry (join('x',$w,$h));
# Create a "control window"
my $control = $main->Toplevel (
-title => 'FS Window',
);
$control->geometry ("50x50");
$control->MoveToplevelWindow(-150,-150);
# Bind FocusIn on the control window
$control->bind ('<FocusIn>', sub {
$main->focusForce;
});