Post your i3 wm screenshots.

I was looking around and saw that every other wm had a screen shot section, but nothing for i3. Thestinger recocmended i3 to me in the irc, and I must say I obsulutly love it. Its the only window manager were I was able to just jump in and start doing stuff and having dmenu installed makes things alot easier. On boot im using around 134 mbs of ram when i have the terminal and htop running.
http://i.imgur.com/Us413GI.png window dedicated to weechat.
http://imgur.com/U62AVkn terminal with alsamixer running.
http://imgur.com/11ic8vX firefox
http://i.imgur.com/liSo55H.jpg and normal desktop.
the status bar at the bottom is just the i3 status bar with some minor tweaks.

Keeping it simple.

Similar Messages

  • Post new artwork and screenshots/configs for Alopex (formerly ttwm)

    Post your screenshots and configs for Alopex here:
    .ttwm_config.h - edit: (this is old so I deleted it and I won't change it here)  My alopex configs are in my configs in my signature.
    On my netbook HP mini
    Edit:  config.h change--see sig link--this wm changes config.h like I change my underwear--just a sign that it's under active development.
    Last edited by bgc1954 (2013-05-04 14:24:40)

    Hey all!
    Here are my custom config.h and icons.h.
    Background is Fedora 11's King Concept. My status bar is being run by conky (conkyrc linked). And the programs featured on the cluttered image are dwb, htop and alsi (with a customized Arch logo) running in termite, and interrobang at the bottom (custom interrobangrc can be found here).
    [Edit]: Removed embedded custom config.h ('twas out-of-date; see new link for updated version), and updated picture links for 404s.
    [Edit2]: Updated links for name change.
    All the best,
    -HG
    Last edited by HalosGhost (2013-05-01 19:04:49)

  • Steps to link a report to Web Application Form. Post Your Opinion

    Hi friends,
    After going through it what is your opinion. please do post your opinion.
    Could any one give the complete steps of Linking a report to web form so that when called / clicked the link the report can display the data.
    I have unchecked the "Report Option -> Save Data with Reports". So that the report could not take extra space.
    I have DB connection code in my .aspx.vb file, it is as follows:
    Private Sub ConfigureCrystalReports()
    Dim fileName As String = "Reports\" & ReportID & ".rpt"
    Dim reportPath As String = Server.MapPath(fileName)
    myRepDoc = New ReportDocument()
    myRepDoc.Load(reportPath)
    myCrystalReportViewer.ReportSource = myRepDoc
    myCrystalReportViewer.RefreshReport()
    Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
    If Session("reportConnectionInfo") IsNot Nothing Then
    Dim ConnInforArrList As ArrayList = DirectCast(Session("reportConnectionInfo"), ArrayList)
    myConnectionInfo.ServerName = ConnInforArrList(0)
    myConnectionInfo.DatabaseName = ConnInforArrList(1)
    myConnectionInfo.UserID = ConnInforArrList(2)
    myConnectionInfo.Password = ConnInforArrList(3)
    Else
    lblMessage.ForeColor = Drawing.Color.Red
    lblMessage.Text = "Session is off. Please Relogin to See the Report."
    End If
    SetDBLogonForReport(myConnectionInfo, myRepDoc)
    SetDBLogonForSubreports(myConnectionInfo, myRepDoc)
    myCrystalReportViewer.SelectionFormula = GetFieldName(ReportID) & "='" & Session("CompCode") & "'"
    myCrystalReportViewer.Visible = True
    End Sub
    Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
    Dim myTables As Tables = myReportDocument.Database.Tables
    For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
    Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
    myTableLogonInfo.ConnectionInfo = myConnectionInfo
    myTable.ApplyLogOnInfo(myTableLogonInfo)
    Next
    End Sub
    Private Sub SetDBLogonForSubreports(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
    Dim mySections As Sections = myReportDocument.ReportDefinition.Sections
    For Each mySection As Section In mySections
    Dim myReportObjects As ReportObjects = mySection.ReportObjects
    For Each myReportObject As ReportObject In myReportObjects
    If myReportObject.Kind = ReportObjectKind.SubreportObject Then
    Dim mySubreportObject As SubreportObject = CType(myReportObject, SubreportObject)
    Dim subReportDocument As ReportDocument = mySubreportObject.OpenSubreport(mySubreportObject.SubreportName)
    SetDBLogonForReport(myConnectionInfo, subReportDocument)
    If myReportObject.Name = "Subreport1" Then
    Dim lvSec As Section = subReportDocument.ReportDefinition.Sections("DetailSection1")
    If Not lvSec Is Nothing Then
    Dim t1 As TextObject
    t1 = lvSec.ReportObjects("txtEmpName")
    t1.Text = Session.Contents("EmpName")
    Dim t2 As TextObject
    t2 = lvSec.ReportObjects("txtRepID")
    t2.Text = Request.QueryString("REPID")
    End If
    End If
    End If
    Next
    Next
    End Sub
    Please do help me out as the data of report is not getting displayed on the report.
    After going through it what is your opinion. please do post your opinion.
    While creating the Report has the following Report Options on / checked.
    1. Database Server is Case-Incensitive
    2. Use Indexes Or Server For Speed
    3. Verify on First Refresh
    4. Show Preview Panel
    5. Display Alerts on Refresh
    6. Select Distinct Data for Browsing
    Do I have check or uncheck any other option?
    Thanks and regards
    Edited by: Md. Mushtaque on Sep 6, 2008 2:50 PM
    Edited by: Md. Mushtaque on Sep 8, 2008 9:27 AM
    Edited by: Md. Mushtaque on Sep 8, 2008 12:14 PM

    Sir AG,
    Thanks a lot for replying and spending your valuable time for my problem.
    Sir, I just want to put this in your knowledge that my application is web based application and I am calling these reports through web forms i.e. of ASP.NET coded in vb from .aspx.vb files.
    So as per the code I have attached, I have this
    Option Explicit On
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Next for ReportDocument Object:
    Dim fileName As String = "Reports\" & ReportID & ".rpt"
            Dim reportPath As String = Server.MapPath(fileName)
            myRepDoc = New ReportDocument()
            myRepDoc.Load(reportPath)
            myCrystalReportViewer.ReportSource = myRepDoc
    Above is the code used by me in Page_Init  and I have already tested it from Page_Load. I have got few suggestions from this forum that I should put this code in Page_Init only.
    Lastly:
    The database connectivity code:
    Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
            If Session("reportConnectionInfo") IsNot Nothing Then
                Dim ConnInforArrList As ArrayList = DirectCast(Session("reportConnectionInfo"), ArrayList)
                myConnectionInfo.ServerName = ConnInforArrList(0)
                myConnectionInfo.DatabaseName = ConnInforArrList(1)
                myConnectionInfo.UserID = ConnInforArrList(2)
                myConnectionInfo.Password = ConnInforArrList(3)
            Else
                lblMessage.ForeColor = Drawing.Color.Red
                lblMessage.Text = "Session is off. Please Relogin to See the Report."
            End If
            SetDBLogonForReport(myConnectionInfo, myRepDoc)
            SetDBLogonForSubreports(myConnectionInfo, myRepDoc)
    SetDBLogonForReport(myConnectionInfo, myRepDoc)
    Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
            Dim myTables As Tables = myReportDocument.Database.Tables
            For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
                Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
                myTableLogonInfo.ConnectionInfo = myConnectionInfo
                myTable.ApplyLogOnInfo(myTableLogonInfo)
            Next
        End Sub
    This code I have got from a sample of the forum itself.
    Sir, after all these effort and the unchecking of option "Save Data with Report" on calling the reports from my forms it is showing blank report. No data from the database is coming form the database.
    I have uncheked the option "Save Data with Reports" to get the updated data each time the report has been called but now the status is that nothing is coming.
    Thanks again for you precious and valuable effort to help me but the my problem is unsolved, So sir please if you could put an eye on it and help me out to get rid of this problem, I will be very thankful to you for your kind help.
    Thanks and regards
    Mushtaque

  • Post Your's 3DMark 2k1 scores HERE

    I would like to verify my 3DMark 2001 SE (v.330). Post your's results with complete system description (drivers versions, ram timings, overclock settings (if any), ect.)
    Here is my Baby:
    - Athlon 3200 (2210 MHz - NC core, no OC)
    - MSI K8N NEO Platinum (1.4 bios)
    - 2x 512Mb PC3200 Kingston ValueRam (KVR400X64C2.5/512) at 2.5-3-8-3-1T (stock speeds)
    - MSI 6800GT (stock speed)
    - WD Caviar 80GB SATA 8Mb cache
    - Tagan Tg-480 (480W)
    - SB Audigy 2 ZS
    - Other standar stuff
    My 3D 2k1 score: 21435 (with above system&settings, all stock)
    Run at:
    - Win XP + SP2
    - Dx: 9.0c
    - ForceWare: 66.70
    NOW YOUR'S RESULTS...

    Here is mine using the system in my sig.........
    3dmark01 score.....24,552
    http://service.futuremark.com/compare?2k1=8165419
    DX9c
    66.81 nvidia drivers
    XP Pro with SP2

  • Post Your's 3DMark 2001 scores HERE

    I would like to verify my 3DMark 2001 SE (v.330). Post your's results with complete system description (drivers versions, ram timings, overclock settings (if any), ect.)
    Here is my Baby:
    - Athlon 3200 (2210 MHz - NC core, no OC)
    - MSI K8N NEO Platinum (1.4 bios)
    - 2x 512Mb PC3200 Kingston ValueRam (KVR400X64C2.5/512) at 2.5-3-8-3-1T (stock speeds)
    - MSI 6800GT (stock speed)
    - WD Caviar 80GB SATA 8Mb cache
    - Tagan Tg-480 (480W)
    - SB Audigy 2 ZS
    - Other standar stuff
    My 3D 2k1 score: 21435 (with above system&settings, all stock)
    Run at:
    - Win XP + SP2
    - Dx: 9.0c
    - ForceWare: 66.70
    NOW YOUR'S RESULTS...

    MSI K8N Neo Platinum (1.5b2 beta BIOS)
    Athlon 64 3000+ @ 2.4GHz (10 x 240)
    Radeon 9800 Pro @ 450/375
    2x512MB Crucial PC3200 @ 240MHz @ 3-3-3-8 1T
    Catalyst 4.9
    Score: 23,077
    URL: http://service.futuremark.com/compare?2k1=8134558

  • Best export settings? Post your tips!

    I have been using iMovie for a long time. I have messed with settings quite a bit but the files always come out huge. I have seen other people's QT movies with great image quality for small file size. I have no idea how they do it.
    My best experience in iMovie is to use the CD-ROM setting for export. This gives it the window size that I want, with a small file size, while maintaining pretty good image quality.
    I'm talking about custom settings here. I need something other than the pre-made settings. There are so many custom options, but they're all way over my head. My goal is to use something other than h264, but keep the CD-ROM quality and size.
    Does anyone have any good custom settings they recommend for getting a good balance of dimensions, image quality, and file size?
    If so, post your tips! Let us know your favorite export settings!
    --Timothy

    The export settings are determined by the way the file is to be viewed.
    "Local" files (those on CD's or fast networks) can be much larger in file size because bandwidth isn't much of an issue. Sent to iDVD and they make great videos that can only play in DVD players or software.
    "Web" based files are a new can of worms because each persons opinion of "good" and also "small" file size differ so much.
    Best advice anyone can give you is for you to make your own sample export "tests":
    Take a minute sample (a part that has high action and motion) and choose the "Expert Settings" to send the file to QuickTime.
    Try various video codecs and adjust the data and frame rate to raise or reduce file size.
    Try AAC audio (very popular audio format) but set the frequency to "half" of CD quality (22050 Hz). This will be half as large in file size.
    If your camera didn't record in stereo (most don't) set the file to mono and you reduce the file size in half again.
    Compression is nearly an art form and the options in the expert settings can be a bit confusing.

  • Got a feature idea? Post your idea or vote on an idea at the ideas site

    We have just launched a new site (
    http://ideas.acrobat.com) so
    that we can hear new ideas and have the community vote on which
    ideas are important. Post your idea or vote on an idea. We hope
    you’ll check it out.
    Thanks,
    The Acrobat.com Team
    Buzzword is a part of Acrobat.com

    The installing groups is actually already implemented in the beta of 2.6, which is in ftp.archlinux.org/other/pacman
    From the ChangeLog itself:
    Added group handling, so one can run 'pacman -S kde' and
                    install all files from the KDE group
    Not sure about the other things though, those sound like some very good ideas that should be considered and hopefully they aren't too hard to implement.
    Kritoke

  • Feedback for 3G Nano 1.0.1 - Post your feedback!

    Hello everyone. How about posting your feedback in regards to the new 1.0.1 update for the new 3G Nanos?
    Also anyone have the "tilt issue" with their new Nano's?

    Ever since the update my Nano has been shutting off when I press the play/pause button. If I hit play again the screen lights up briefly and then goes dark again. I can get it back on by pressing menu and I can use the center button to start playback; but I can't pause my music or videos. This is really annoying because now I don't know if I have a real issue, or if the update caused this quirk. Regardless I'll probably still take my iPod back because this basic loss of functionality isn't acceptable.

  • Wireless Issues? Post your router.

    I'm finding that lots of people are posting issues with the DLink DI-614+ (I have issues with two of those) and the Airport Extreme.
    Maybe isn't an issue with older routers? idk, but I had good speed on the UMN campus (I believe they use cisco access points) and since using consumer router I've got junk.
    I'm testing an 802.11g Netgear tonight, I'll post results.
    Please Post your Routers and if they are 802.11 A, B, or G
    I have issues on:
    Dlink 614+ 802.11b (2 of them actually)

    DLINK DI-604 router with a DLINK DWL-2100AP wireless access point.
    Access point running WPA encryption and set to AES, not broadcasting SSID.
    Router set to DHCP for the LAN and connected to a DSL modem.
    Access Point set to no DHCP obviously and gets IP's from the router.
    Access Point using NO turbo or superG whatever modes, it is set to "Wireless G only" as only G NIC's on my network.
    DSL speed is 2500 kbps down.
    FACTS:
    - There have never been any speed or connection issues with the D-Link router or access point among my other Windows machines - a desktop (ethernet) and two Sony Vaio laptops (wireless G).
    - My original Mac Book Pro (bought last Friday) with a "W8610.." serial number had constant
    trouble connecting to this network and ran VERY slow with frequent disconnects and unresponsiveness when browsing. Latency was terrible and would consistently take over thirty seconds to load a page.
    It always "saw" the access point on boot up but would fail to connect despite network status showing full signal strength and "Connected".
    Could not ping or use web. The access point DID show the MBP as connected with a good DHCP IP, but nothing on the MBP.
    Required me to open diagnostics on the MBP and re-enter the SSID, security type and password every start up. Tried setting the access point to enable broadcast of SSID - made no difference.
    Changed WPA to "auto" and TKIP - no joy.
    - "W6810.." MBP got extremely hot, had no whine issue or diplay issue but was too hot to touch frequently during use despite being elevated on a Podium Pad. (Did the PSU reset thing - no change in heat.)
    - TODAY, replaced the "W8610.." MBP today from the Apple store with a new MBP - new serial is "W8611.." and is a later revision of the MBP - this according to the Apple tech I spoke with this morning who also confirmed the logic board replacements in later "D" revision models.
    - The new MBP has zero problems with wireless - it connected right away using the same settings on the DWL-2100AP and AirPort NIC as the previous MBP. It connects on reboot and detects, conencts to the AP without problem.
    Speed is excellent and exactly where it should be.
    - The new MBP is DRAMATICALLY COOLER than the original. The difference
    is nothing less than amazing - the area above the function keys is barely warm even with the MBP running intensive apps.
    - Note that on both MBP's I ran and installed all software updates including OS X.
    - Apple Store tech and manager (arrogant brat) insisted there was no such problem with heat or logic board issues, no network issues and said they had heard no such thing from Apple despite my conversation with Apple tech earlier that day. Said I should buy an AirPort base station or give up on the networks, blamed DLINK hardware.
    Took an hour of insisting they replace it to get anywhere - they ran hardware tests on the old MBP and found no errors - said heat was "normal" despite it being too hot to touch and MUCH hotter than the display laptops.
    Mac Book Pro 2.16 GHz   Mac OS X (10.4.6)  

  • "Error reconnecting to SBP-2 device"Could anyone post your suceessful print

    at /etc/modules
    options sbp2 serialize_io=1 exclusive_login=0
    linux1 (nod1 first boot)
    [root@linux1 ~]# dmesg | grep sbp2
    sbp2: $Rev: 1265 $ Ben Collins <[email protected]>
    ieee1394: sbp2: Maximum concurrent logins supported: 2
    ieee1394: sbp2: Number of active logins: 0
    ieee1394: sbp2: Logged into SBP-2 device
    ieee1394: sbp2: Error reconnecting to SBP-2 device - reconnect failed
    ieee1394: sbp2: Logged out of SBP-2 device
    ieee1394: sbp2: Maximum concurrent logins supported: 2
    ieee1394: sbp2: Number of active logins: 0
    ieee1394: sbp2: Logged into SBP-2 device
    linux2 (node2 second boot)
    [root@linux2 ~]# dmesg | grep sbp2
    sbp2: $Rev: 1265 $ Ben Collins <[email protected]>
    ieee1394: sbp2: Maximum concurrent logins supported: 2
    ieee1394: sbp2: Number of active logins: 1
    ieee1394: sbp2: Logged into SBP-2 device
    The 2nd boot server will alway kick out the 1st booted server from firewire
    connection.
    i try to use diffrent 1394 card , this issue still exist.
    Could anyone post your suceessful printout? ( both node status )
    Message was edited by:
    kook.liu
    Message was edited by:
    kook.liu

    My dmesg output looked exactly like yours and I was able to get a RAC up and running.
    I do not believe this is a problem as it worked for me with identical dmesg output.
    I think it means that the first node which was connected to the Firewire drive gets dis-connected when the second node tries to connect to it. That is why you get the "reconnect failed" message.
    After it fails to reconnect, it logs out of the device and then logs in again. If your device did not support concurrent logins, you would see a different error message in your dmesg output ("login failed").
    A simple way to check if the device is available to both nodes after booting is to run the fdisk -l command on both nodes. If you can see the device on both nodes in the fdisk output then it is available on both nodes.

  • Post your questions about #BlackBerry10 here!

    Hey everyone,
    What a week last week! I think I'm finally starting to settle down after all the excitement with our global launch events last week.
    If you're getting a BlackBerry 10 device soon, take a look at these tips on the BlackBerry Help Blog to help you set up your email, contacts, calendar and social networks: http://helpblog.blackberry.com/2013/01/blackberry-10-add-email-contacts/
    Have other questions about BlackBerry 10? Our community can answer pretty much anything, just post your question below!
    Remember, if you have a BlackBerry 10 device and need support, check out the BlackBerry 10 Support boards on the main page of the community.
    ^Bo
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Likes for those who have helped you.Click Accept as Solution for posts that have solved your issue(s)!

    sanjithb wrote:
    Why is the bis being stopped and not unlimited in south africa. Especially on the Z10.
    the BIS is not stopped. BIS is still required for OS7 and previous.
    the Z10 does not need a specific BIS plan, which is generally considered a very good improvement.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Post your iWeb '08 Sites

    I would love to see what everyone else is doing with iWeb '08. Post your sites so we can all see! I will start by showing mine, any constructive feedback is appreciated!
    http://www.tantricstudios.com

    Greetings Aimmekat (is that right?)
    Hey I like your web site, generally speaking. My suggestions would be more in the arena of spacing of text. I find, as a designer, that the more 'air' I put between text lines the better it is for the eyeballs. The tighter the text lines are, the less likely are people going to read your message. That was my initial impression, at least. You'll see; if you simply spread the text a bit -- add space between the lines, you'll notice an immediate improvement in the 'feel' of the page.
    Here's my site. It's my portfolio site, which I am also going to make my blog and personal site. But until I get those pages going, for now it serves as my portfolio only.
    http://web.me.com/scottboley1/MonosDesignConcepts
    (Sorry, wasn't sure how to make it a link in this forum -- maybe you can share?)
    Please know that because I am a designer, I make no claims to expert analysis of your site. The suggestions I offer are my opinion only. I'm only almost 50, so I have many years of experience to gain before I can call myself any sort of expert. Man, now that I look at what I typed, I sound like a really old ****. 50 -- can that be true?
    Hey, thanx for starting this thread, It's good to see what others are doing and find some stuff I can steal and claim as my own. Isn't that what good design is, after all?
    Thanx
    FriarScott

  • Post Your HDTV display CONFIGURATION HERE.

    In order to help others, can those who have full (or close) resolution of your HDTV post your display configuration here?
    Please include your television model, OSX version, and list of an additional software/hardware used to get things working.
    Thanks.

    Toshiba 37WL58, Mac mini 1.5GHz Intel Core Solo, DisplayConfigX (registered), connected with the DVI to VGA adapter.
    Verified DisplayConfigX settings:
    Monitor Tab:
    Refresh: 49.00 - 105.00
    Horizontal Frequency: 12.00 - 85.00
    Pixel Frequency: 350.00
    Aspect Ratio: 4:3
    Default Refresh Rate: 60
    Resolution Tab:
    Horizontal - Vertical
    Active Pixel: 1360 - 768
    The others are preset, but should read:
    Front Porch: 64 - 1
    Sync: 144 - 3
    Back Porch: 208 - 23
    Total: 1776 - 795
    The refresh rate should default to 60.003
    Afterwards, choose the Widescreen option on the remote.
    (Thanks to Andyb2 over at AVForums.com and Mark Parsons1 at Apple Discussions)
    Mac mini 1.5GHz Intel Core Solo   Mac OS X (10.4.7)  

  • Any body out there with vivo working on FX ?. can you post your specs ?

    Hi,
    If there is anybody out there in the universe who can do analog capture with these cards, please let us know.
    Just post your specs to enlightment of the rest mere mortals....
    I am pretty sure there is a colission for resources... I have rebotted 30 times my PC today and I see a pattern.
    After blue screen, my computer will not boot anymore. I have to disconnect the network cable ( I presume to avoid some kind of initialization) or  if I am lucky and I can start in safe mode, disable the network interface.
    With network disabled, after blue screen ( the usual suspect nv4_mini.sys ) I can reboot without problems, eitehrwise forget it...
    Currently, I manage to see color video ( and movement ) when I put into capture mode in Ulead. However, as soon as I request it to start capturing, .... blue screen.
    I have dig the whole internet and a lot of people is under the same hassel from all vendors selling video-in FX series.
    I have already gone to safe mode, uninstall everything possible and installed piece by piece from start... same results.
    any hints I will try.
    JCG
    MSI K7D master 2xAMD (XP/MP) 2600 1GB ram
    2 Seagate 120GB
    PSU Qtec 400W ( I know I know... not popular.... but it has been working for me for 1.8 years without a glich and believe me, I put this box under a hard test with full CPU, encoding MPEG for a full weekend and it is fine.... still does if I capture via firewire and later encode... it is just the f%c$k&$in*g WMD that screws up everyting...)
    FX5200VTD128
    DVD LG

    Hi,
    First I don't have a clue to what your problem is but...
    Yes I can capture with my FX5600-vtdr-128 video card...I can do it in two programs,Studio9 and Roxio DVD creator..The only rub is huge white bars  pop in and out of the capture sometimes..Particularly after a glitch in the video..Were talking home movies not commercial copying..As near as I can tell from a google search it's the Nvidia WDM driver thinking that it has to block Macrovision..Good luck,
    jolphil

  • Benchmark song - please post your observations

    I am thinking of going all software. Selling most of my hardware synths. I don't know which computer to go for but I would like to be able to make all types of music and video work. Can you go thru the post below (I copied from the archived post) and post your observations? Macbook pros (C2D) are nice but can they handle orchestral work? Macpros are fast but difficult to carry around, of course. How well do the EWQLSO vsts and such play on the newest macs? How much is the delay loading samples? Hardware synths usually have no delay loading patches.
    Thanks to all of you who gave results on the first benchmark song. This one is very similar, instead of using Space Designer it uses Sculpture. Each track has 15 notes on each, so for polyphony multiply tracks by 15.
    http://noisefloor.com/logic/SculptureBenchmark.lso.zip
    Mute tracks until you are able to play the session back consistently.
    Please list:
    Your machine and speed
    Ram
    OS version
    Logic version
    sound card
    buffer setting
    My results: Quad 2.5, 4.5 gigs ram, 10.4.5, Logic 7.1.1, MOTU 828mk2, buffer 512
    39 tracks, polyphony 585, CPU use in Activity monitor maxed about 340%.

    If your looking to do orchestral mockups using samples, running a sculpture/space designer based benchmark test will not give you the answers you seek. Sculpture & space designer are both CPU based effects/instruments, where orchestral mockups are RAM based (for the most part). Of course CPU is needed to run your players (Kontakt, play, VSL VI, etc) as well as reverbs (convolution reverbs use a lot of CPU) but your actual orchestra will be streaming from RAM & Hard Disk.
    Thus macpro desktops are currently the best way to go, as you have more RAM access & multiple internal HD's. Thats not to say you cant get comparable results using a macbook pro, but seeing as how all my studio equipment is in my studio, desktop works great for me.
    I wonder if its possible to do a similar benchmark test using Logic's EXS & factory samples instead of sculpture? Of course the factory patches are much smaller than the massive instruments found in VSL/EastWest, but I'm sure someone could put one together. I'd be interested to see the results.

Maybe you are looking for