[perlwm-develop] Re: Hmm... Another roundof patches
Status: Alpha
Brought to you by:
rdw
From: Rich W. <rd...@im...> - 2000-08-23 01:07:23
|
> Okay what is the prefered way of submitting patches for this? Continue > uploading all relavant files? Er. I'm not sure. I guess you could just check stuff in if your CVS is working. Or maybe we could try and use the patch manager. > I did notice that on this newer version Clicks to a window don't make it to a > window .... this is a problem :) ... Does your config stuff cope with the '+click' stuff. The '+' means pass this event through to the client (replay it). Click throughs work for me, so that might be it. > ALSO imlib2-perl : the makefile.pl fails on a build with this error > > package ExtUtils::MakeMaker::_version; > no strict; > > local $VERSION; > $VERSION=undef; do { > our $VERSION = '0.01'; > }; $VERSION > ' in Imlib2.pm: Can't modify subroutine entry in scalar assignment at (eval 7) line 7, at EOF Hmm. That's really odd. What version of Perl do you have? It works for me, but I'm using 5.6 so the MakeMaker might be a bit broken somehow. > thats all for now ... I'll try to hack out some of the little problem in the > windwomanager tonight so i can finisht he menus .. but i have my doubts on > success there :) > > everything (config wise) seems to load fine ... lemme know what you think of > the menu file format ... I'd like to do a simular file to load the other menus > .. make it easily user configurable... I still think native perl would be nicer :-) Simple enough format for users to learn, they don't need to know perl, since it's fairly intuitive :- $RootMenu = [ 'XTerm' => 'exec xterm', 'XEmacs' => 'exec xemacs', 'Graphics' => [ 'Gimp' => 'exec gimp', 'xv' => 'exec xv' ] ]; $Fonts = [ 'title' => 'lucidasans-14', 'title_focus' => 'lucidasans-bold-14' ]; $Colors = [ 'frame' => 'grey75', 'frame_focus' => 'white' ]; Have fun, Rich |