Re: [dev] Dooble - Was: [surf] segfault

2011-09-20 Thread hiro
I want to kill myself



Re: [dev] Futaba Linux

2011-09-20 Thread Valentin Ochs
On Tue, Sep 20, 2011 at 10:54:25PM +0100, Nick wrote:
> Quoth Sir Cyrus:
> > Thought a few of you might be interested in this:
> > http://alrig.ht/newfutaba.html
> 
> Sounds really nice. Pity they can't use musl, as ARM support is an 
> important use-case.

musl has ARM support.

--Valentin


pgpZoytZK26H8.pgp
Description: PGP signature


Re: [dev] Futaba Linux

2011-09-20 Thread Nick
Quoth Sir Cyrus:
> Thought a few of you might be interested in this:
> http://alrig.ht/newfutaba.html

Sounds really nice. Pity they can't use musl, as ARM support is an 
important use-case.

I like that they plan to ditch /etc/{init.d|rc.d}/* for /sbin/rc.*.  
For some reason I hadn't considered that, but it seems much more 
sensible.


pgp9D4L43Bo6Z.pgp
Description: PGP signature


[dev] Futaba Linux

2011-09-20 Thread Sir Cyrus
Thought a few of you might be interested in this:
http://alrig.ht/newfutaba.html



Re: [dev] Dooble - Was: [surf] segfault

2011-09-20 Thread Andrew Hills
On Tue, Sep 20, 2011 at 2:01 PM, Kurt H Maier  wrote:
> The whole thing is written in XML.

Because their C++ didn't suck enough.

--Andrew Hills



Re: [dev] Dooble - Was: [surf] segfault

2011-09-20 Thread Troels Henriksen
ilf  writes:

> On 08-04 13:32, Cengiz Tas wrote:
>> So what I are using instead for browsing? I mean beside FF or
>> Chromium. Netsurf, Arora, etc. ? Netsurf lacks of Java Script and
>> Arora development stopped for quite a long time. 
>
> Anyone looked at this? http://dooble.sourceforge.net/
>
>> Dooble is a new Open Source Web browser that focuses on compactness,
>> security, and stability.
>
> Total SLOC = 14,660

"An integrated file manager is an elegant necessity."

"Dooble includes a colorful desktop."

What is this nonsense?

-- 
\  Troels
/\ Henriksen



[dev] Re: Dooble - Was: [surf] segfault

2011-09-20 Thread Christian Neukirchen
ilf  writes:

> Anyone looked at this? http://dooble.sourceforge.net/
>
>> Dooble is a new Open Source Web browser that focuses on compactness,
>> security, and stability.
>
> Total SLOC = 14,660

... without Qt and QtWebkit.

-- 
Christian Neukirchenhttp://chneukirchen.org




Re: [dev] Dooble - Was: [surf] segfault

2011-09-20 Thread Kurt H Maier
The whole thing is written in XML.
-- 
# Kurt H Maier



[dev] Dooble - Was: [surf] segfault

2011-09-20 Thread ilf

On 08-04 13:32, Cengiz Tas wrote:
So what I are using instead for browsing? I mean beside FF or Chromium. 
Netsurf, Arora, etc. ? Netsurf lacks of Java Script and Arora 
development stopped for quite a long time. 


Anyone looked at this? http://dooble.sourceforge.net/

Dooble is a new Open Source Web browser that focuses on compactness, 
security, and stability.


Total SLOC = 14,660

--
ilf

Über 80 Millionen Deutsche benutzen keine Konsole. Klick dich nicht weg!
-- Eine Initiative des Bundesamtes für Tastaturbenutzung


signature.asc
Description: Digital signature


Re: [dev] How to get windows opened on one tag?

2011-09-20 Thread Rob
On 20 September 2011 08:53, Yue Wu  wrote:
> Hi list,
Hello.

> Sometimes I want to know all windows that I've opened on current tag, to
> know if a window has opened and decide to find and switch to it, so my
> question is how to get a list of opened windows names on current tag? The
> statusbar shows only current focus window name.

Apply the attached patch to config.h, and include the attached C file in
dwm.c somewhere just above the function implementations.

You might have to add the prototype for list_cur_tag somewhere in your
config.h too.

If you want dwm to constantly output the current client list to a file,
you'll have to use alarm(3), threads or something similar.

Rob
void
list_cur_tag(const Arg *arg) {
	Client *c;
	FILE *f;

	if(!arg || !arg->v || !selmon)
		return;

	f = fopen(arg->v, "w");
	if(!f){
		fprintf(stderr, "open %s: %s\n", arg->v, strerror(errno));
		return;
	}

	for(c = selmon->clients; c; c = c->next)
		if(ISVISIBLE(c))
			fprintf(f, "%s\n", c->name);

	fclose(f);
}
diff --git a/config.h b/config.h
index afc6bee..daa2e61 100644
--- a/config.h
+++ b/config.h
@@ -227,6 +227,8 @@ static Key keys[] = {
 	{ MODKEY,  XK_y,  incnmaster, {.i = +1 } },
 	{ MODKEY,  XK_o,  incnmaster, {.i = -1 } },

+	{ MODKEY|ShiftMask,XK_g,  list_cur_tag,   {.v = "/tmp/dwm_cur_tag" } },
+
 	TAGKEYS(   XK_1,  0)
 	TAGKEYS(   XK_2,  1)
 	TAGKEYS(   XK_3,  2)


Re: [dev] How to get windows opened on one tag?

2011-09-20 Thread Andrew Hills
MOD-J until you're back at the first window. If you need the list all
at once, maybe write them down as you go? You could also attach a
debugger and browse through the client list.

--Andrew Hills



On Tue, Sep 20, 2011 at 3:53 AM, Yue Wu  wrote:
> Hi list,
>
> Sometimes I want to know all windows that I've opened on current tag, to
> know if a window has opened and decide to find and switch to it, so my
> question is how to get a list of opened windows names on current tag? The
> statusbar shows only current focus window name.
>
> --
> Regards,
> Yue Wu
>
> State Key laboratory of Natural Products and Functions
> Department of Traditional Chinese Medicine
> China Pharmaceutical University(中國藥科大學)
> No.24, Tongjia Xiang Street, Nanjing 210009, China
>
>



[dev] How to get windows opened on one tag?

2011-09-20 Thread Yue Wu

Hi list,

Sometimes I want to know all windows that I've opened on current tag, to  
know if a window has opened and decide to find and switch to it, so my  
question is how to get a list of opened windows names on current tag? The  
statusbar shows only current focus window name.


--
Regards,
Yue Wu

State Key laboratory of Natural Products and Functions
Department of Traditional Chinese Medicine
China Pharmaceutical University(中國藥科大學)
No.24, Tongjia Xiang Street, Nanjing 210009, China