From deepak at gnumonk.com Thu Mar 1 05:58:06 2012 From: deepak at gnumonk.com (Deepak Tripathi) Date: Thu, 1 Mar 2012 11:28:06 +0530 Subject: [clfswm-devel] dot files and examples. Message-ID: Team, Can you please share dot files of your modification. I am unable to find nice how to to create one. I have following basic requirement. 1) Reload clfswm 2) change default key binding. 3) Defaults name to frame 4) program to be opened default etc.. apologies if this questions have already asked to newbie. -- Thanks Deepak From z_axis at 163.com Thu Mar 1 06:41:46 2012 From: z_axis at 163.com (z_axis) Date: Thu, 01 Mar 2012 14:41:46 +0800 Subject: [clfswm-devel] dot files and examples. In-Reply-To: References: Message-ID: You mean ~/.config/clfswm/clfswm ? If so, see the attachment. ? Thu, 01 Mar 2012 13:58:06 +0800?Deepak Tripathi ??: > Team, > Can you please share dot files of your modification. I am unable to > find nice how to to create one. > > I have following basic requirement. > > 1) Reload clfswm > 2) change default key binding. > 3) Defaults name to frame > 4) program to be opened default etc.. > > apologies if this questions have already asked to newbie. > > > -- > Thanks > Deepak > > _______________________________________________ > clfswm-devel mailing list > clfswm-devel at common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel -- ?? Opera ????????????: http://www.opera.com/mail/ -------------- next part -------------- A non-text attachment was scrubbed... Name: clfswmrc Type: application/octet-stream Size: 2897 bytes Desc: not available URL: From deepak at gnumonk.com Thu Mar 1 08:54:32 2012 From: deepak at gnumonk.com (Deepak Tripathi) Date: Thu, 1 Mar 2012 14:24:32 +0530 Subject: [clfswm-devel] dot files and examples. In-Reply-To: References: Message-ID: z_axis, Thanks it will be good start. On Thu, Mar 1, 2012 at 12:11 PM, z_axis wrote: > You mean ~/.config/clfswm/clfswm ? If so, see the attachment. > > > ? Thu, 01 Mar 2012 13:58:06 +0800?Deepak Tripathi ??: > >> Team, >> Can you please share dot files of your modification. I am unable to >> find nice how to to create one. >> >> I have following basic requirement. >> >> 1) Reload clfswm >> 2) change default key binding. >> 3) Defaults name to frame >> 4) program to be opened default etc.. >> >> apologies if this questions have already asked to newbie. >> >> >> -- >> Thanks >> Deepak >> >> _______________________________________________ >> clfswm-devel mailing list >> clfswm-devel at common-lisp.net >> http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel > > > > -- > ?? Opera ????????????: http://www.opera.com/mail/ > _______________________________________________ > clfswm-devel mailing list > clfswm-devel at common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel > From pbrochard at common-lisp.net Thu Mar 1 20:43:15 2012 From: pbrochard at common-lisp.net (Philippe Brochard) Date: Thu, 01 Mar 2012 21:43:15 +0100 Subject: [clfswm-devel] dot files and examples. In-Reply-To: (Deepak Tripathi's message of "Thu, 1 Mar 2012 11:28:06 +0530") References: Message-ID: <8762eorr18.fsf@common-lisp.net> Deepak Tripathi writes: > Team, > Can you please share dot files of your modification. I am unable to > find nice how to to create one. > Hi, you can check the wiki for this: http://trac.common-lisp.net/clfswm/wiki/UserConfiguration It'll be a good place to share useful configuration code. > I have following basic requirement. > > 1) Reload clfswm > With the menu (Key combo: C-> + m + m + r) > 2) change default key binding. > Add a binding hook in your configuration file: -------------------------------------------------- (defun local-binding () (define-main-key ("twosuperior") 'run-apwal) (define-main-key ("Control_R") 'banish-pointer) (undefine-main-key ("Menu")) (define-main-key ("Pause" :control) 'reboot-halt-menu) (define-main-key ("Pause") 'black-screen)) (add-hook *binding-hook* 'local-binding)) -------------------------------------------------- Here, define-main-key, define-second-key, undefine-main-key and more (see src/clfswm-keys.lisp for details) may helps. > 3) Defaults name to frame > The default frame is the first frame in the root-frame. So this will do the trick: -------------------------------------------------- (defun my-init-hook () (setf (child-name (first (frame-child *root-frame*))) "The name you want")) (add-hook *init-hook* 'my-init-hook) -------------------------------------------------- > 4) program to be opened default etc.. > See in the doc/ directory or here: http://trac.common-lisp.net/clfswm/browser/doc/dot-clfswmrc http://common-lisp.net/project/clfswm/dot-clfswmrc > apologies if this questions have already asked to newbie. > No problem. We can share those code on the wiki. http://trac.common-lisp.net/clfswm/wiki/UserConfiguration Regards, Philippe From stayvoid at gmail.com Tue Mar 6 21:39:49 2012 From: stayvoid at gmail.com (Stayvoid) Date: Wed, 7 Mar 2012 00:39:49 +0300 Subject: [clfswm-devel] CLFSWM (gNewSense) Message-ID: Hello. Could you help me to run this WM? I've successfully run it this way: startx # Several xterm windows appeared cd clfswm-1106-2 clisp (load "load.lisp") But I want it to start automatically when I type startx. How to achieve this? I'm using gNewSense Parkes (this version is based on Debian Squeeze). "If you want to run CLFSWM at X startup. Add one of the line to start CLFSWM in $HOME/.xsession, $HOME/.xinitrc or $HOME/.Xclients depending the way you start X." [1] I don't have these files. Should I create one? [1] http://trac.common-lisp.net/clfswm/wiki/Setup Cheers From v.plechinger at gmail.com Tue Mar 6 21:55:42 2012 From: v.plechinger at gmail.com (Valentin Plechinger) Date: Tue, 6 Mar 2012 22:55:42 +0100 Subject: [clfswm-devel] CLFSWM (gNewSense) In-Reply-To: References: Message-ID: An 'exec clfswm' in your $HOME/.xinitrc should do the trick (yes create it) On Tue, Mar 6, 2012 at 10:39 PM, Stayvoid wrote: > Hello. > > Could you help me to run this WM? > > I've successfully run it this way: > startx > # Several xterm windows appeared > cd clfswm-1106-2 > clisp > (load "load.lisp") > > But I want it to start automatically when I type startx. How to achieve this? > > I'm using gNewSense Parkes (this version is based on Debian Squeeze). > > "If you want to run CLFSWM at X startup. Add one of the line to start > CLFSWM in $HOME/.xsession, > $HOME/.xinitrc or $HOME/.Xclients depending the way you start X." [1] > I don't have these files. Should I create one? > > [1] http://trac.common-lisp.net/clfswm/wiki/Setup > > Cheers > > _______________________________________________ > clfswm-devel mailing list > clfswm-devel at common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel From stayvoid at gmail.com Thu Mar 8 02:07:47 2012 From: stayvoid at gmail.com (Stayvoid) Date: Thu, 8 Mar 2012 05:07:47 +0300 Subject: [clfswm-devel] CLFSWM (gNewSense) In-Reply-To: References: Message-ID: It didn't work out. (I'm using a source package.) On 3/7/12, Valentin Plechinger wrote: > An 'exec clfswm' in your $HOME/.xinitrc should do the trick (yes create it) > > On Tue, Mar 6, 2012 at 10:39 PM, Stayvoid wrote: >> Hello. >> >> Could you help me to run this WM? >> >> I've successfully run it this way: >> startx >> # Several xterm windows appeared >> cd clfswm-1106-2 >> clisp >> (load "load.lisp") >> >> But I want it to start automatically when I type startx. How to achieve >> this? >> >> I'm using gNewSense Parkes (this version is based on Debian Squeeze). >> >> "If you want to run CLFSWM at X startup. Add one of the line to start >> CLFSWM in $HOME/.xsession, >> $HOME/.xinitrc or $HOME/.Xclients depending the way you start X." [1] >> I don't have these files. Should I create one? >> >> [1] http://trac.common-lisp.net/clfswm/wiki/Setup >> >> Cheers >> >> _______________________________________________ >> clfswm-devel mailing list >> clfswm-devel at common-lisp.net >> http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel > > _______________________________________________ > clfswm-devel mailing list > clfswm-devel at common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel > From Philipp.Kroos at t-online.de Thu Mar 8 10:12:12 2012 From: Philipp.Kroos at t-online.de (Philipp Kroos) Date: Thu, 8 Mar 2012 11:12:12 +0100 Subject: [clfswm-devel] CLFSWM (gNewSense) In-Reply-To: References: Message-ID: <20120308101212.GA1251@Desktop> If you can (load "load.lisp") from a running X, it should suffice to put the line clisp "/path/to/load.lisp" in a file .xinitrc in your homedir. `startx` looks for ~/.xinitrc and executes the commands it finds in there. You can also start additional programs from there or configure your xserver, but you must do it prior to starting clfswm and possibly backgrounded, like so: xsetroot -solid '#ffffff' # black background, x-setting xcompmgr & # provides transparency, runs in the background clisp ... # Execute wm Philipp On Thu, Mar 08, 2012 at 05:07:47AM +0300, Stayvoid wrote: > It didn't work out. > (I'm using a source package.) > > On 3/7/12, Valentin Plechinger wrote: > > An 'exec clfswm' in your $HOME/.xinitrc should do the trick (yes create it) > > > > On Tue, Mar 6, 2012 at 10:39 PM, Stayvoid wrote: > >> Hello. > >> > >> Could you help me to run this WM? > >> > >> I've successfully run it this way: > >> startx > >> # Several xterm windows appeared > >> cd clfswm-1106-2 > >> clisp > >> (load "load.lisp") > >> > >> But I want it to start automatically when I type startx. How to achieve > >> this? > >> > >> I'm using gNewSense Parkes (this version is based on Debian Squeeze). > >> > >> "If you want to run CLFSWM at X startup. Add one of the line to start > >> CLFSWM in $HOME/.xsession, > >> $HOME/.xinitrc or $HOME/.Xclients depending the way you start X." [1] > >> I don't have these files. Should I create one? > >> > >> [1] http://trac.common-lisp.net/clfswm/wiki/Setup > >> > >> Cheers > >> > >> _______________________________________________ > >> clfswm-devel mailing list > >> clfswm-devel at common-lisp.net > >> http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel > > > > _______________________________________________ > > clfswm-devel mailing list > > clfswm-devel at common-lisp.net > > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel > > > > _______________________________________________ > clfswm-devel mailing list > clfswm-devel at common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel From stayvoid at gmail.com Thu Mar 8 18:45:03 2012 From: stayvoid at gmail.com (Stayvoid) Date: Thu, 8 Mar 2012 21:45:03 +0300 Subject: [clfswm-devel] CLFSWM (gNewSense) In-Reply-To: <20120308101212.GA1251@Desktop> References: <20120308101212.GA1251@Desktop> Message-ID: Thanks. It worked. From stayvoid at gmail.com Thu Mar 8 19:06:13 2012 From: stayvoid at gmail.com (Stayvoid) Date: Thu, 8 Mar 2012 22:06:13 +0300 Subject: [clfswm-devel] CLFSWM (gNewSense) In-Reply-To: References: <20120308101212.GA1251@Desktop> Message-ID: I've recently realized that it only works for root. This one works: /root/.xinitrc clisp /path/to/load.lisp This one doesn't work: /home/myuser/.xinitrc clisp /path/to/load.lisp How to make it work for a regular user? Maybe it has something to do with permissions. I have no idea. From pbrochard at common-lisp.net Thu Mar 8 22:06:56 2012 From: pbrochard at common-lisp.net (Philippe Brochard) Date: Thu, 08 Mar 2012 23:06:56 +0100 Subject: [clfswm-devel] CLFSWM licence change? (end) Message-ID: <87r4x2d9xb.fsf@common-lisp.net> Hi, CLFSWM licence change again. To sum up : 1) Stay with the actual GPLv3 'or any later version' -> 2 or 3 votes 2) Switch to the LLGPL -> 1 vote 3) Switch to a BSD like licence. -> 1 vote I haven't been able to join some important contributors (at least for ideas). Second, CLFSWM is based on some Stumpwm ideas but as I already said there's not so mush code from this WM nor from the Eclipse WM in CLFSWM. But by respect to those projects I'll let CLFSWM under the GPLv3 (or any later version). Best regards, Philippe From pbrochard at common-lisp.net Thu Mar 8 22:08:59 2012 From: pbrochard at common-lisp.net (Philippe Brochard) Date: Thu, 08 Mar 2012 23:08:59 +0100 Subject: [clfswm-devel] CLFSWM (gNewSense) In-Reply-To: (stayvoid@gmail.com's message of "Thu, 8 Mar 2012 22:06:13 +0300") References: <20120308101212.GA1251@Desktop> Message-ID: <87mx7qd9tw.fsf@common-lisp.net> stayvoid at gmail.com writes: > I've recently realized that it only works for root. > > This one works: > /root/.xinitrc > clisp /path/to/load.lisp > > This one doesn't work: > /home/myuser/.xinitrc > clisp /path/to/load.lisp > > How to make it work for a regular user? > Maybe it has something to do with permissions. I have no idea. > Hi, maybe you have to enable local connections to your X server. Add a line with "xhost local:local" in your .xinitrc before the line starting clfswm. Tell us if this works or not. This will help us to guide others. Regards, Philippe From madnificent at gmail.com Thu Mar 8 22:16:57 2012 From: madnificent at gmail.com (madnificent) Date: Thu, 8 Mar 2012 23:16:57 +0100 Subject: [clfswm-devel] CLFSWM licence change? (end) In-Reply-To: <87r4x2d9xb.fsf@common-lisp.net> References: <87r4x2d9xb.fsf@common-lisp.net> Message-ID: dear CLFSWM-devel, this obviously means that I will not add contributions to CLFSWM. there's a bunch of code here which will sadly live only locally. i do wish you all the best of luck and hope CLFSWM will have a good life, even after i stop using it in the future. the only saddening things for me about these discussions has been that no developers actually joined in with meaningful comments (in fact, only a user that apparently can't get CLFSWM running showed interest) and that none of the claimed issues with the GPL have been overturned. again, i hope CLFSWM has a bright future with many many happy users and devs. best regards, the madnificent On Thu, Mar 8, 2012 at 11:06 PM, Philippe Brochard wrote: > Hi, > > CLFSWM licence change again. To sum up : > > > 1) Stay with the actual GPLv3 'or any later version' > > ?-> 2 or 3 votes > > 2) Switch to the LLGPL > > ?-> 1 vote > > 3) Switch to a BSD like licence. > > ?-> 1 vote > > I haven't been able to join some important contributors (at least for > ideas). Second, CLFSWM is based on some Stumpwm ideas but as I already > said there's not so mush code from this WM nor from the Eclipse WM in > CLFSWM. But by respect to those projects I'll let CLFSWM under the GPLv3 > (or any later version). > > Best regards, > > Philippe > > _______________________________________________ > clfswm-devel mailing list > clfswm-devel at common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel From pbrochard at common-lisp.net Thu Mar 8 23:54:25 2012 From: pbrochard at common-lisp.net (Philippe Brochard) Date: Fri, 09 Mar 2012 00:54:25 +0100 Subject: [clfswm-devel] CLFSWM licence change? (end) In-Reply-To: (madnificent@gmail.com's message of "Thu, 8 Mar 2012 23:16:57 +0100") References: <87r4x2d9xb.fsf@common-lisp.net> Message-ID: <87ipied4y6.fsf@common-lisp.net> madnificent at gmail.com writes: > dear CLFSWM-devel, > > > this obviously means that I will not add contributions to CLFSWM. > Hi. Sad news indeed. > there's a bunch of code here which will sadly live only locally. i do > wish you all the best of luck and hope CLFSWM will have a good life, > even after i stop using it in the future. > Ok, your choice. > the only saddening things for me about these discussions has been that > no developers actually joined in with meaningful comments (in fact, > only a user that apparently can't get CLFSWM running showed interest) > and that none of the claimed issues with the GPL have been overturned. > We're not a lot on this list (20 actually) and some of us had not jumped here for ages. In particular only one person over the four people in the clfswm author file (except me) has voted to the licence change. You have to contact and convince them also. If you want to discuss about GPL vs BSD, maybe you'll have more reply on the Stumpwm list (I follow it). As I've already said, the GPL is fine for me as it grants that my code will always be free (as in speech). It can't be turned in a proprietary software. If you share your code with us, I'll merge it in **your name** and it'll be **your** GPL code (you'll have to add your name in the author line in the file header if you want to be sure and I'll add you in the AUTHOR file). It'll be in the actual GPL version (3 actually). If we want to upgrade to a newer GPL version, we'll have to ask *you* the right to do this. If you disagree and don't like the new version, we'll stuck to the GPL version *you* accepted. On the other side, with the 'or later' clause, we let the user choose a more recent GPL version if he wants. But you as a developer, your right are always under the GPL v3 (actually). No one can change the file header without the owner permission (i.e: without your permission if your name is in the author line of the file header or in the AUTHOR file). This is the base of the licence respect (this is the same with the BSD one). What do you fear most : a new GPL version which let more freedom and protection to the user or a BSD licence which let every one do what he wants with your code (even proprietary software which enclose new enhancements). > again, i hope CLFSWM has a bright future with many many happy users and devs. > Thanks a lot. But CLFSWM has more than 6 years now and is just the way I like to use my computer. I'm glad if others find this good too. And as I've already said at the CLFSWM beginning, CLFSWM is just a big configuration file over some Xlib functions. Create your own (or fork it) if you have different ideas or taste (like licence version). It's not hard (it took me one mouth to have a usable WM with my ideas in it). Start with TinyWM (lisp/C/python version, your choice) it's public domain (even if this can cause more troubles here in France for example as the public domain is not recognized as a valid concept). > best regards, > Best regards. Philippe > the madnificent > > > On Thu, Mar 8, 2012 at 11:06 PM, Philippe Brochard > wrote: >> Hi, >> >> CLFSWM licence change again. To sum up : >> >> >> 1) Stay with the actual GPLv3 'or any later version' >> >> ?-> 2 or 3 votes >> >> 2) Switch to the LLGPL >> >> ?-> 1 vote >> >> 3) Switch to a BSD like licence. >> >> ?-> 1 vote >> >> I haven't been able to join some important contributors (at least for >> ideas). Second, CLFSWM is based on some Stumpwm ideas but as I already >> said there's not so mush code from this WM nor from the Eclipse WM in >> CLFSWM. But by respect to those projects I'll let CLFSWM under the GPLv3 >> (or any later version). >> >> Best regards, >> >> Philippe >> >> _______________________________________________ >> clfswm-devel mailing list >> clfswm-devel at common-lisp.net >> http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel > > _______________________________________________ > clfswm-devel mailing list > clfswm-devel at common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel From deepak at gnumonk.com Fri Mar 9 09:00:55 2012 From: deepak at gnumonk.com (Deepak Tripathi) Date: Fri, 9 Mar 2012 14:30:55 +0530 Subject: [clfswm-devel] CLFSWM (gNewSense) In-Reply-To: References: <20120308101212.GA1251@Desktop> Message-ID: What error are you getting ? Can you please share .xsession-errors. I think its permission issue. When you run make && make install and load using load.lisp it defaults go to /usr/local/bin/ where local user does not have permission to write so it will fail. -- gnmk On Fri, Mar 9, 2012 at 12:36 AM, Stayvoid wrote: > I've recently realized that it only works for root. > > This one works: > /root/.xinitrc > clisp /path/to/load.lisp > > This one doesn't work: > /home/myuser/.xinitrc > clisp /path/to/load.lisp > > How to make it work for a regular user? > Maybe it has something to do with permissions. I have no idea. > > _______________________________________________ > clfswm-devel mailing list > clfswm-devel at common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel From deepak at gnumonk.com Fri Mar 9 09:04:20 2012 From: deepak at gnumonk.com (Deepak Tripathi) Date: Fri, 9 Mar 2012 14:34:20 +0530 Subject: [clfswm-devel] Any bug tracking system ? Message-ID: Team, Do we have any bts available , what I see from trac http://trac.common-lisp.net/clfswm/report, But not maintained or no issues have been reported so far? Will be great that road map will define clearly (Just my thought). -- Deepak From pbrochard at common-lisp.net Fri Mar 9 14:06:26 2012 From: pbrochard at common-lisp.net (Philippe Brochard) Date: Fri, 09 Mar 2012 15:06:26 +0100 Subject: [clfswm-devel] Any bug tracking system ? In-Reply-To: (Deepak Tripathi's message of "Fri, 9 Mar 2012 14:34:20 +0530") References: Message-ID: <87vcmdvpgd.fsf@common-lisp.net> Deepak Tripathi writes: > Team, > Do we have any bts available , what I see from trac > http://trac.common-lisp.net/clfswm/report, But not maintained or no > issues have been reported so far? > It's maintained but no one used it for now. It's also a good way to push your request and make it permanent until they're treated. Another way is to make your request on the mailing list. > Will be great that road map will > define clearly (Just my thought). > Hum, this point is hard to define since CLFSWM is very versatile and can evolve following every one needs ("you want that -> we can code it -> ok include it in CLFSWM in the contrib or core tree"). For example, CLFSWM is not fully ICCCM [1] compliant. But it'll be very hard to follow this spec since there is no workspace/pager concept in CLFSWM for example. For me CLFSWM is really near from a 1.0 version. But even the 1.0 version concept is not clear since we can always add or remove things from it. For example, near 2007 I have claimed that CLFSWM was in 0.999999 version. It is always in this state now just some 9999 more (and will be surely in the future). Even, I thought on removing the tar.gz distribution and using only the git version. BTW you can read the TODO file which list things to be done and is the reference. Regards, Philippe [1] http://tronche.com/gui/x/icccm/ > > -- > Deepak > > _______________________________________________ > clfswm-devel mailing list > clfswm-devel at common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel From v.plechinger at gmail.com Fri Mar 9 19:18:41 2012 From: v.plechinger at gmail.com (Valentin Plechinger) Date: Fri, 9 Mar 2012 20:18:41 +0100 Subject: [clfswm-devel] Removing borders when the Window/Frame is Fullscreen Message-ID: Ahoj Clfswm users. I would like to remove borders from fullscreen windows like mplayer, feh and others and also when I'm in a frame that only has one fullscreen window (not that important). Some time ago I saw a hack somewhere but I can't find it anymore and I'm not sure it adressed the same issue. Also, at least for mplayer and similiar programs, wouldn't that be useful to be in mainline? Best regards, Valentin From pbrochard at common-lisp.net Fri Mar 9 20:59:33 2012 From: pbrochard at common-lisp.net (Philippe Brochard) Date: Fri, 09 Mar 2012 21:59:33 +0100 Subject: [clfswm-devel] Removing borders when the Window/Frame is Fullscreen References: Message-ID: <87y5r9ebii.fsf@common-lisp.net> Valentin Plechinger writes: > Ahoj Clfswm users. > Hi, > I would like to remove borders from fullscreen windows like mplayer, > feh and others and also when I'm in a frame that only has one > fullscreen window (not that important). > Some time ago I saw a hack somewhere but I can't find it anymore and > I'm not sure it adressed the same issue. > As said before, you can define the fullscreen coordinates outside the physical screen: -------------------------------------------------- (defun get-fullscreen-size () "Return the size of root child (values rx ry rw rh) You can tweak this to what you want" (values (- (* *border-size* 2)) (- (* *border-size* 2)) (+ (xlib:screen-width *screen*) (* *border-size* 2)) (+ (xlib:screen-height *screen*) (* *border-size* 2)))) -------------------------------------------------- Another (not permanent) solution is to enter in the mplayer window and make it the root-frame (select it with the up key and enter in it with alt+enter). BTW on a single physical screen, here on my box, mplayer starts without border lines (with the -fs option if needed). It's more tricky with a dual screen and there is some work to be done on this part. I've made some changes recently to ease dual screen usage. > Also, at least for mplayer and similiar programs, wouldn't that be > useful to be in mainline? > Please, try the solutions above and will see if there is a need to handle mplayer specifically (not sure from my every day usage). > Best regards, > Regards, Philippe From z_axis at 163.com Sat Mar 10 02:09:57 2012 From: z_axis at 163.com (z_axis) Date: Sat, 10 Mar 2012 10:09:57 +0800 Subject: [clfswm-devel] Is there mode-line in clfswm ? Message-ID: I have used stumpwm for a long time. And i want to taste CLFSWM because it seems STUMPWM has stopped developing. thanks! From pbrochard at common-lisp.net Sat Mar 10 08:49:05 2012 From: pbrochard at common-lisp.net (Philippe Brochard) Date: Sat, 10 Mar 2012 09:49:05 +0100 Subject: [clfswm-devel] Is there mode-line in clfswm ? In-Reply-To: (z. axis's message of "Sat, 10 Mar 2012 10:09:57 +0800") References: Message-ID: <87399gvo1q.fsf@common-lisp.net> z. axis writes: > I have used stumpwm for a long time. And i want to taste CLFSWM > because it seems STUMPWM has stopped developing. > Hi. Welcome. There is no mode-line in CLFSWM for now. But one in the contrib/ directory is very welcome. Are you sure STUMPWM has stopped developing ? Is it not in a stable state instead ? > thanks! > Regards, Philippe From z_axis at 163.com Sun Mar 11 01:41:44 2012 From: z_axis at 163.com (z_axis) Date: Sun, 11 Mar 2012 09:41:44 +0800 Subject: [clfswm-devel] Is there mode-line in clfswm ? In-Reply-To: <87399gvo1q.fsf@common-lisp.net> References: <87399gvo1q.fsf@common-lisp.net> Message-ID: From http://download.savannah.gnu.org/releases/stumpwm/, the latest version is "18-May-2010 19:12". ? Sat, 10 Mar 2012 16:49:05 +0800?Philippe Brochard ??: > z. axis writes: > >> I have used stumpwm for a long time. And i want to taste CLFSWM >> because it seems STUMPWM has stopped developing. >> > Hi. Welcome. > There is no mode-line in CLFSWM for now. But one in the contrib/ > directory > is very welcome. > > Are you sure STUMPWM has stopped developing ? Is it not in a stable > state instead ? > >> thanks! >> > Regards, > > Philippe > > _______________________________________________ > clfswm-devel mailing list > clfswm-devel at common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel -- ?? Opera ????????????: http://www.opera.com/mail/ From v.plechinger at gmail.com Sun Mar 11 08:50:26 2012 From: v.plechinger at gmail.com (Valentin Plechinger) Date: Sun, 11 Mar 2012 09:50:26 +0100 Subject: [clfswm-devel] Is there mode-line in clfswm ? In-Reply-To: References: <87399gvo1q.fsf@common-lisp.net> Message-ID: Developement is still going on if you look at the git version. Although there aren't new features planned as I remember. The main reason I use clfswm is the excellent mouse support which is definitely missing in stumpwm (most people who use stump don't seem to care for that though). On Sun, Mar 11, 2012 at 2:41 AM, z_axis wrote: > From http://download.savannah.gnu.org/releases/stumpwm/, the latest version > is "18-May-2010 19:12". > > > ? Sat, 10 Mar 2012 16:49:05 +0800?Philippe Brochard > ??: > > >> z. axis writes: >> >>> I have used stumpwm for a long time. And i want to taste CLFSWM >>> because it seems STUMPWM has stopped developing. >>> >> Hi. Welcome. >> There is no mode-line in CLFSWM for now. But one in the contrib/ directory >> is very welcome. >> >> Are you sure STUMPWM has stopped developing ? Is it not in a stable >> state instead ? >> >>> thanks! >>> >> Regards, >> >> Philippe >> >> _______________________________________________ >> clfswm-devel mailing list >> clfswm-devel at common-lisp.net >> http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel > > > > -- > ?? Opera ????????????: http://www.opera.com/mail/ > > > > _______________________________________________ > clfswm-devel mailing list > clfswm-devel at common-lisp.net > http://lists.common-lisp.net/cgi-bin/mailman/listinfo/clfswm-devel From stayvoid at gmail.com Mon Mar 12 01:54:55 2012 From: stayvoid at gmail.com (Stayvoid) Date: Mon, 12 Mar 2012 04:54:55 +0300 Subject: [clfswm-devel] CLFSWM (gNewSense) In-Reply-To: <87mx7qd9tw.fsf@common-lisp.net> References: <20120308101212.GA1251@Desktop> <87mx7qd9tw.fsf@common-lisp.net> Message-ID: > Hi, maybe you have to enable local connections to your X server. > Add a line with "xhost local:local" in your .xinitrc before the line > starting clfswm. It worked. Thanks.