Re: [dev] wmii

2011-06-24 Thread Thomas Dahms
2011/6/24 Thomas Kucharczyk : > Hi, > i want to change my Modkey to "Alt L"/"Mod1", because i dont hany a windows > key on my t40. But i cant get it to work. > Here the Details: > http://pastebin.com/Lm5sKzfH > Sabayo 6 x86 > wmii-3.9.2-r2 > -rwxr-xr-x 1 thomas thomas 7310 24. Jun 22:02 /home/thoma

Re: [dev] wmii

2011-06-24 Thread Thomas Kucharczyk
On Sat, Jun 25, 2011 at 5:30 AM, hiro <23h...@googlemail.com> wrote: > the output of xmodmap, please > > xmodmap: up to 4 keys per modifier, (keycodes in parentheses): shift Shift_L (0x32), Shift_R (0x3e) lockCaps_Lock (0x42) control Control_L (0x25), Control_R (0x69) mod1

Re: [dev] wmii

2011-06-24 Thread hiro
the output of xmodmap, please

[dev] Re: The Apollo Display Manager [very long]

2011-06-24 Thread Connor Lane Smith
Hey John, On 24 June 2011 19:13, John Yates wrote: > While following the st and editor threads I felt prompted to put down > these reminiscences.  My hope is that they will stimulate the > discussion. Thanks a lot, this was fascinating. I'd not heard of Apollo before, but it seems to bear a simi

[dev] wmii

2011-06-24 Thread Thomas Kucharczyk
Hi, i want to change my Modkey to "Alt L"/"Mod1", because i dont hany a windows key on my t40. But i cant get it to work. Here the Details: http://pastebin.com/Lm5sKzfH Sabayo 6 x86 wmii-3.9.2-r2 -rwxr-xr-x 1 thomas thomas 7310 24. Jun 22:02 /home/thomas/.wmii/wmiirc regards

Re: [dev] The Apollo Display Manager [very long]

2011-06-24 Thread Kurt H Maier
I have no idea how I've never heard of this, but this is almost exactly what has been in my head for a long time. It would be almost trivial to introduce a sane mouse interface to this idea, and then build all kinds of applications that lever the separation of streams. -- # Kurt H Maier

[dev] The Apollo Display Manager [very long]

2011-06-24 Thread John Yates
While following the st and editor threads I felt prompted to put down these reminiscences. My hope is that they will stimulate the discussion. /john INTRODUCTION Many years ago I worked at Apollo Computer.[APOLLO] This was before X, NFS, Sun workstations or Apple Macintoshes; when Unix typica

Re: [dev] [sbase] cp and security

2011-06-24 Thread Connor Lane Smith
Hey, On 23 June 2011 22:59, Random832 wrote: > Emulate fchdir with a "magic cookie" struct containing an absolute path, > device, and inode number [stat(".") every time and panic if device and > inode number don't match the cookie] Do you think we could rely on just the physical path, in order t

Re: [dev] [sbase] simplify nohup

2011-06-24 Thread Connor Lane Smith
Hey, On 24 June 2011 08:18, anonymous wrote: > Patch attached. Thanks, applied. To explain my reasoning for sigaction(2): I always avoid signal(2), because it's importable when installing signal handlers. But on a closer look it's fine for just setting SIG_IGN, so we can use it in this case. c

[dev] [sbase] simplify nohup

2011-06-24 Thread anonymous
Patch attached. diff -r 0021d9f2b4e6 nohup.c --- a/nohup.c Thu Jun 23 02:08:41 2011 +0100 +++ b/nohup.c Fri Jun 24 11:18:06 2011 +0400 @@ -13,16 +13,14 @@ main(int argc, char *argv[]) { int fd; - struct sigaction sa; if(getopt(argc, argv, "") != -1) exi