Well, 0.5 is full implementation of the Reality Distortion Field, while 0.7 is implementation of OpenGL 2.0 acceleration. (0.6 is where they fix the RDF before Steve throws a camera and/or 12" PowerBook at somebody.)
0.8 is scheduled to include complete integration of X11 applications with OS X, moving the X11 server running alongside Quartz, while 0.9 is more bug fixes.
Around 1.0, X11 gets merged into Emacs, which then becomes the premiere operating system in 2004, slowly phasing out OS X as we know it today. In other words, they will have reinvented Windows.
How do I get KDE to work with this?
by
Green+Light
·
· Score: 3, Interesting
From the linked site:
New in X11 v0.2:
Support for Gnome, KDE hints etc.
I was using the first edition of this, and could not get KDE to compile (using fink).
Before I waste 5 more hours of my (precious) time, does anyone know if KDE will now compile with this new edition?
-- "Send an Instant Karma to me" - Yes
Re:How do I get KDE to work with this?
by
WatertonMan
·
· Score: 4, Informative
KDE works great with this version. I'd suggest compiling 3.1 from cvs though. With this version I find KDE is actually faster than Aqua windows. Great. With X11.b1 I had lots of random crashes and the problem of windows/menus under the OSX menu. X11.b2 fixes all this. As an added bonus OSX fonts now show up in KDE applications. Very nice.
The problem I'm left with is that clicking on a KDE window doesn't bring it to the front over an Aqua window for some reason. Oddly this doesn't affect non-KDE windows, such as Gnome apps like Gnumeric. I can't quite figure that out.
My remaining problem is that I can't seem to copy and paste between X11 apps and OSX apps. I'm not sure why. A few people are left with some phantom processes, even after quitting X11. So that may be what is keeping copy and paste from working right. I'd started it using the kde window manager instead of the aqua-wm manager. So perhaps something was left running that was screwing aqua-wm up.
Still overall it feels faster and from my preliminary testing is much more stable.
Re:How do I get KDE to work with this?
by
teridon
·
· Score: 3, Informative
Is there some reason you must compile from source? How about just install the binary with "sudo apt-get install bundle-kde"?
-- I hold it, that a little rebellion, now and then, is a good thing. -- Thomas Jefferson
Re:How do I get KDE to work with this?
by
WatertonMan
·
· Score: 2, Informative
With the older version of Fink compiling against the X11 sources improved things considerably. I'd expect that if you've updated Fink since X11.app came out this isn't necessary. In my case I made the mistake of upgrading Perl outside of Fink and that screwed many things up since Fink's expected version of Perl was different than mine. I ended up having to recompile most of my stuff from scratch. It wasn't too bad. I just let it run all night. (grin)
Re:How do I get KDE to work with this?
by
ernstp
·
· Score: 2, Informative
Yes, the problem is that they only have 3.0.7 as binary. If you want 3.1 you have to compile from source, and you really should get KDE 3.1!
Downloaded it earlier today...
by
Anonymous Coward
·
· Score: 3, Informative
-Installing and running was good.. -connected to a RH box and ran gimp, netscape, magic and they worked great
-I like the fact that my X windows minimize under the doc and don't run inside a super X window. - I wish there are more preferences and a more intutive way to add applications.
Also, Apple should add more info to the getting started section with some 2-way examples.
Thank you Apple...
by
ActiveSX
·
· Score: 2, Insightful
The lack of focus follows cursor in the pretty Aqua-y WM is the one thing that really bummed me out about 0.1. Now if I could only get it for the rest of the operating system...
Re:Thank you Apple...
by
mbbac
·
· Score: 5, Insightful
Focus follows pointer isn't a good idea when you have a global menu bar.
--
mbbac
Re:Thank you Apple...
by
spitzak
·
· Score: 2, Insightful
Actually I think there is a solution to that.
The first thing I thought of was to not have the menubar change for awhile so that moving the mouse up to it over other windows does not change it.
But now I think a much better idea is to not change it until you type to a window. Thus you can move the mouse to point at and highlight windows all you want, but the menubar does not change and thus you can continue moving to it to pull down a menu. Typing any key (including pushing down the command key for a menu shortcut) will switch the menubar to match the current focuesed window.
Clicking on the titlebar of a window would raise it, make it have the focus, and change the menubar.
Clicking inside a window would probably act exactly like the titlebar, if I can predict how Apple would design it. However I would prefer the apps to not raise unless the click was in a "dead" area such as blank background or anything where clicking does nothing, but clicking on a button or text field does not raise the window. In this case if you click on a button it is not clear if this should change the menubar. Anything that raises the window, including the app doing it itself, should change the menubar.
Re:Thank you Apple...
by
anarkhos
·
· Score: 2, Insightful
However it is a good idea if you want to confuse the hell out of your customers.
Is that window active or inactive? Huh? I have to move my mouse to type? Huh?
-- >80 column hard wrapped e-mail is not a sign of intelligent >life
Re:Thank you Apple...
by
Masker
·
· Score: 2, Informative
Actually, there are greater problems than the global menu bar. The way we work around the global menu bar problem with Focus-Follows-Mouse in CodeTek VirtualDesktop is to do two things:
1) Allow the user to say "don't change focus if the mouse is in motion"
2) Have a configurable timer that has to elapse before focus takes place
These are pretty standard for other FFM implementations, but are really necessary for the global menu bar. Therefore, if I have my FFM to "Not while in motion" and a delay of.1 second, it works pretty well; I can move over other windows to get to the menu bar, the Dock or Interface Builder palettes all without triggering unwanted switches.
The bigger problem is that while we can focus other windows, we HAVE to raise the windows in the case of Carbon windows. We can non-raise focus Cocoa windows, but there are two problems:
1) It's confusing because some windows (at least to users who don't know what applications use which technology) arbitrarily will raise or not raise.
2) The rest of the system is strictly click-to-focus. This causes problems when you do things like select text from a window that has been focused, but not raised.
Actually, the 2nd problem is the greater of the two. When I have two Terminal windows open that overlap, I like to be able to cut & paste between the two without changing their stacking. Unfortunately, you can't do that because when you click to select text, the mouse down event is the click-to-focus event.
We're hoping that Apple can give us the flexibility to implement the kind of FFM that all UNIX/Linux users are used to, but right now the whole system has a different feel to it. Anyway, we do the best we can do under the circumstances.
Oh, by the way, there are a couple of minor problems with compatibility between CodeTek VirtualDesktop and Apple's X11, but we're trying to work these out with Apple so that they can work together perfectly.
--
---------The early bird gets the worm, but the second mouse gets the cheese.
Re:Thank you Apple...
by
spitzak
·
· Score: 2, Interesting
The timeout before the focus change was the solution I first thought of and seems like the obvious one. However after thinking about it awhile (but not really having any system to test it on) I think the idea of waiting for a keystroke to change the menubar may be much better. A system that does not rely on a timeout would be much cleaner and predictable.
The other problem is something common to Linux and Windows, which is a confusion between being on top and having the focus. Unfortunately sometimes these are entangled quite badly at low levels in the system (X does not have this problem but new X window managers do). I can think of no other reason why Carbon has to be on top than the fact that the carbon interface to raise and give focus are the same and thus there is no way to tell the program otherwise. The double-buffered Quartz could easily emulate any graphic effects such as reading back from the screen so there is no technical reason why Carbon cannot act like Cocoa, it is certainly a limitation of the Carbon API.
Your problem with terminals is exactly what I have been yelling about here for months: CLICK SHOULD NOT RAISE WINDOWS!!!! This has been an endless frustration as it makes overlapping windows useless. And every time I say it some moron will say "but if some raise and some don't it will be inconsistent and confuse the user". That is bull and paranoid thinking like that is going to keep alternative GUI's from ever being better than Windows.
Tomorrow.3 will be released.
If it is, we can go ahead and call it a dupe.
fink and apple's x11
by
brarrr
·
· Score: 3, Interesting
What do I need to know about having fink work with apple's x11. I have fink installed on my new ibook, but wanted to wait to see if i should install xfree86 or apple's x11 implementation.
what settings do i set, where, and how. what are the differences between that and xfree86?
-- to email me: take my/. handle and append.net preceded by charter.
Re:fink and apple's x11
by
Null_Packet
·
· Score: 5, Informative
Simply install Apple's X and the X Developer Tools (I think that's what they're called) from Apple and when you compile a Fink app, it will ask what kind of X you have installed. Option 1 is something to the effect of "Manual X11 Install, Placeholder".
Have fun! Fink also has some instructions on their site.
Re:fink and apple's x11
by
teridon
·
· Score: 3, Informative
2 seconds on google ("fink x11") would've led you here.
-- I hold it, that a little rebellion, now and then, is a good thing. -- Thomas Jefferson
Re:Why the rev change?
by
lexarius
·
· Score: 3, Funny
Heaven forbid a piece of beta code based on open source software might require a revision at some point. I mean, if they want us to pay for this software, they should....
Oh.
I'm waiting for...
by
goombah99
·
· Score: 4, Funny
I'm waiting for it to reach X12
-- Some drink at the fountain of knowledge. Others just gargle.
Re:I'm waiting for...
by
iksowrak
·
· Score: 5, Funny
Poor Nigel would be upset to see it hit 12.
"Nigel Tufnel: Eleven. Exactly. One louder."
What a crock... [Re:Why the rev change?]
by
Xcapee
·
· Score: 4, Interesting
Was this a troll or lame attempt at humour?
Firstly the X11 thing is beta.
Secondly safari is a beta.
Thirdly, your last link is not even Apple sw.
Given your attitude, I'd say you are too dumb or too careless to be able to figure that out.
Q: How much free software have you released without need for revision?
This is in fact a bug fix, if you can believe that. You will need to create a ~/.xinitrc file that includes a line like this:
exec quartz-wm &
Alternately, you could edit xinitrc file found at/etc/X11/xinit/xinitrc, but odds are that will be overwritten in the future. Also, Apple will put up a scare box asking you to ignore your new ~/.xinitrc, why I cannot fathom, but you'll want to dismiss it.
Re:window manager problems?
by
Halo1
·
· Score: 3, Informative
Open up the installer again, do a custom install and install the config package.
If you scroll down on the fink site to where they mention the problem with the libraries, they have an update up this morning that says 0.2 doesn't need the fix they've made, so I would assume that means Apple fixed the libraries.
Re:what's with the new icon?
by
Golias
·
· Score: 2, Funny
They should almost just go ahead with three X's in the logo, as "XXX" would be the appropriate rating for hot X on X action!
--
Information wants to be anthropomorphized.
Re:X11 question
by
cplater
·
· Score: 2, Informative
You will need to do a search for xinitrc, and rename that file. IIRC it's located at/private/etx/X11/xinit/xinitrc -- I renamed it to bkup.xinitrc, and then quit and restarted X11.app -- everything worked just fine. If that doesn't work, make sure you don't have a.xinitrc in your home directory.
-- --
Charles A. Plater
Re:not really a new icon?
by
ubiquitin
·
· Score: 2, Informative
Yes, it turned out to be a safari misbehaviour, in which the graphics weren't drawing properly.
-- http://tinyurl.com/4ny52
My how times change...
by
Anonymous Coward
·
· Score: 4, Funny
I remember that just a few months ago it was X10!
All it did back then was pop up a bunch of ads.
Re:A bug - any ideas?
by
Graff
·
· Score: 4, Informative
Is anyone else having touble getting the 'Applications' menu to work? I can't get GIMP to start except by starting it from an xterm and I'd really like to be able to use the menu for it (and other applications).
If executing applications from Terminal instead of xterm you have to type "open-x11 program" instead of just the program name. If you are used to Fink and XDarwin this wasn't necessary. To get it back to the way things used to work, add "setenv DISPLAY:0.0" to your.tcshrc file.
So either set up the menu to use the command "open-x11 gimp" (no quotes), or change your.tcshrc file and you can then just put "gimp" as the command (again, no quotes).
Re:Does anyone have any insight
by
KH
·
· Score: 2, Informative
Apple didn't choose twm as the default wm.
This beta reads/etc/X11/xinit/xinitrc and follows what it says to do. Readme says that installer backs up the directory if it exists. But apparently mine was left intact. Thus twm launching at start-up. I just moved/etc/X11 to/etc/_X11 and everything is cool.
For those who haven't installed XDarwin before shouldn't have this problem.
X11 0.2.1 out
by
daveschroeder
·
· Score: 2, Informative
... What in the world could the roadmap for it be if it's as functional as it is at .1 and .2?
My own pointless vanity vintage computing page
"Send an Instant Karma to me" - Yes
-Installing and running was good..
-connected to a RH box and ran gimp, netscape, magic and they worked great
-I like the fact that my X windows minimize under the doc and don't run inside a super X window.
- I wish there are more preferences and a more intutive way to add applications.
Also, Apple should add more info to the getting started section with some 2-way examples.
The lack of focus follows cursor in the pretty Aqua-y WM is the one thing that really bummed me out about 0.1. Now if I could only get it for the rest of the operating system...
SlashForward . . .
Tomorrow .3 will be released.
If it is, we can go ahead and call it a dupe.
What do I need to know about having fink work with apple's x11. I have fink installed on my new ibook, but wanted to wait to see if i should install xfree86 or apple's x11 implementation.
what settings do i set, where, and how. what are the differences between that and xfree86?
to email me: take my
Heaven forbid a piece of beta code based on open source software might require a revision at some point. I mean, if they want us to pay for this software, they should.... Oh.
I'm waiting for it to reach X12
Some drink at the fountain of knowledge. Others just gargle.
Was this a troll or lame attempt at humour?
Given your attitude, I'd say you are too dumb or too careless to be able to figure that out.
Q: How much free software have you released without need for revision?
Oh shoot! Sig block again.
This is in fact a bug fix, if you can believe that. You will need to create a ~/.xinitrc file that includes a line like this:
/etc/X11/xinit/xinitrc, but odds are that will be overwritten in the future. Also, Apple will put up a scare box asking you to ignore your new ~/.xinitrc, why I cannot fathom, but you'll want to dismiss it.
exec quartz-wm &
Alternately, you could edit xinitrc file found at
Open up the installer again, do a custom install and install the config package.
Donate free food here
Like some other recent Apple downloads, this one used Disc Copy to copy itself to the desktop and then auto-unmount.
If you scroll down on the fink site to where they mention the problem with the libraries, they have an update up this morning that says 0.2 doesn't need the fix they've made, so I would assume that means Apple fixed the libraries.
They should almost just go ahead with three X's in the logo, as "XXX" would be the appropriate rating for hot X on X action!
Information wants to be anthropomorphized.
You will need to do a search for xinitrc, and rename that file. IIRC it's located at /private/etx/X11/xinit/xinitrc -- I renamed it to bkup.xinitrc, and then quit and restarted X11.app -- everything worked just fine. If that doesn't work, make sure you don't have a .xinitrc in your home directory.
-- Charles A. Plater
Yes, it turned out to be a safari misbehaviour, in which the graphics weren't drawing properly.
http://tinyurl.com/4ny52
I remember that just a few months ago it was X10!
All it did back then was pop up a bunch of ads.
The hint you need can be found on this page at MacOS X Hints. Here's the relevant text:
So either set up the menu to use the command "open-x11 gimp" (no quotes), or change your
Sapere aude!
Apple didn't choose twm as the default wm.
/etc/X11/xinit/xinitrc and follows what it says to do. Readme says that installer backs up the directory if it exists. But apparently mine was left intact. Thus twm launching at start-up. I just moved /etc/X11 to /etc/_X11 and everything is cool.
This beta reads
For those who haven't installed XDarwin before shouldn't have this problem.
Well, it's already updated to 0.2.1.
/etc/X11, to use quartz-wm instead of twm. This is the only change since v0.2."
"Installer now defaults to replacing