Thread Gdk (Gtk3::Gdk) ohne X-Server möglich? (4 answers)
Opened by mika at 2015-06-03 18:46

mika
 2015-06-03 18:46
#181247 #181247
User since
2010-10-02
168 Artikel
BenutzerIn

user image
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl
use Gtk3 -init;
my $color = Gtk3::Gdk::Color::parse ($ARGV[0]);

my $complement = $color->copy;
$complement->red(255 - $complement->red);
$complement->green(255 - $complement->green);
$complement->blue(255 - $complement->blue);

printf "%s\n", $complement->to_string;



Wenn ich das auf einem Headless-System (Ohne X-Server) ausführe:
Code: (dl )
1
2
3
4
perl ~/bin/complementary-color.pl red
Unable to init server: Verbindung ist gescheitert:Verbindungsaufbau abgelehnt

(complementary-color.pl:10093): Gtk-WARNING **: cannot open display:


Kann da was ge-mach-t werden? Aktuell nutze ich zusätzlich xvfb – ein mittels virtuellem Framebuffer imitierter X-Server.
Last edited: 2015-06-04 06:14:59 +0200 (CEST)

View full thread Gdk (Gtk3::Gdk) ohne X-Server möglich?