Is it possible to put Safari 4's tabs on top of the window?

3

2

In the Safari 4 betas, the tab bar was moved to the top of the window, rather than underneath the address/bookmark bar:

Safari 4 Beta's tabs

Is there any way to get this back in the current Safari 4.0.3 (non-beta release)?

I can only find the command to disable this feature in the betas:

defaults write com.apple.Safari DebugSafari4TabBarIsOnTop -bool NO

Changing NO to YES has no effect with the current version.

dbr

Posted 2009-08-20T01:31:12.310

Reputation: 4 987

Answers

2

You can do it, but it requires some hacking. You need to have the beta installer.

  1. Install Safari 4 final
  2. Using pacifist extract only the Safari application from the beta installer.
  3. Replace the final Safari.app with the beta Safari.app - do not replace any system files!
  4. You should be able to launch the application now, using the new safari system files and the beta application (with tabs on top etc.)

Here is a link to a guide:

MacOSX Hints with some basic info, see the comments for more details

The article references Pacifist, an application which allows you to work with installer .pkg files. While it is paid the demo should be enough to complete the changes needed.

You should probably keep a copy of the application somewhere, as any Safari update will overwrite it again.

redacted

Posted 2009-08-20T01:31:12.310

Reputation: 2 400

2

No. The design choice was reversed. None of the beta settings apply to the final.

Rich Bradshaw

Posted 2009-08-20T01:31:12.310

Reputation: 6 324

-1

It is not changing YES to NO or vice versa, it is changing them to FALSE or TRUE, vice versa.

http://lifehacker.com/5161005/put-safari-4-betas-tabs-back

ctzdev

Posted 2009-08-20T01:31:12.310

Reputation: 2 320

1defaults write treats both YES and TRUE the same, if you do defaults read com.apple.Safari DebugSafari4TabBarIsOnTop after either, it returns 1 (but neither works) – dbr – 2009-08-20T13:04:35.730