#!/usr/bin/perl use strict; use warnings; use Tk; my $mw = new MainWindow(-background => undef); $mw->overrideredirect(1); # Fensterdekoration ausschalten; $mw->Label(-text => "Hallo Welt")->pack(); MainLoop();