File: hello-world.pl

package info (click to toggle)
libtickit-widgets-perl 0.42-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 568 kB
  • sloc: perl: 5,636; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 425 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/perl

use v5.20;
use warnings;

use Tickit;

use Tickit::Widget::Box;
use Tickit::Widget::Static;

my $box = Tickit::Widget::Box->new(
   style => { bg => "green" },
   child_lines => '80%',
   child_cols => '80%',
)->set_child(
   Tickit::Widget::Static->new(
      text => "Hello, world!",
      align => "centre", valign => "middle",
      style => { bg => "black" },
   )
);

Tickit->new( root => $box )->run;