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;
use Tk::PNG;
my $mw = MainWindow->new;
my $icon = $mw->Photo (
-image => 'appicon.png',
-format => 'PNG',
);
# Set the PNG icon.
$mw->Icon (-image => $icon);
# Apply the mask file.
$mw->iconmask ('@appicon_mask.xbm');
MainLoop;