Posts Tagged ‘mac’

  1. Mute volume on shutdown

    Found this here

    Two scripts, both saved in /usr/bin:

    loginscript
    #!/bin/bash
    /usr/bin/osascript -e 'set volume without output muted'
    logoutscript
    #!/bin/bash
    /usr/bin/osascript -e 'set volume with output muted'

    Make them executable:

    sudo chmod a+x /usr/local/bin/loginscript
    sudo chmod a+x /usr/local/bin/logoutscript

    Then set them to be called at boot/shutdown:

    sudo defaults write com.apple.loginwindow LoginHook /usr/local/bin/loginscript
    sudo defaults write com.apple.loginwindow LogoutHook /usr/local/bin/logoutscript

    And if you want to remove them:

    sudo defaults delete com.apple.loginwindow LoginHook
    sudo defaults delete com.apple.loginwindow LogoutHook
    sudo rm /usr/local/bin/loginscript
    sudo rm /usr/local/bin/logoutscript
  2. Better volume control

    More control over volume using a mac keyboard – hold ( fn@ -) @shiftalt (option) and volume up or down to move it in sub steps. There are 4 sub steps to one volume “block”

  3. My views: MacBook Pro 15″

    My new MacBook Pro is great. It delivers what I wanted: a computer as (actually more) powerful than my iMac yet portable. These are my thoughts:

    The good:

    • It’s portable
    • It’s got much more memory and a faster processor than my old iMac.
    • With 10.6 it has a noticeable decrease in boot time. 10.6 also adds a few useful features.
    • Keyboard is great to type on, the illumination is a very cool feature.
    • Trackpad is just amazing. Much better than any trackpad I’ve ever used before; It’s smoother, bigger and generally more responsive. The buttons (aka the whole trackpad) are also fantastic to use with good audible feedback and depth when you push them.

    The bad:

    • The screen seems to make the colours far too bright – I need to look into seeing if you can change this.

    The ugly:

    • I keep using both my left and right hand on the trackpad simultaneous causing the pinch gesture to be called. Left hand stay away!
  4. Spotlight complex searches

    You can create complex searches in spotlight by holding down option (alt) and clicking on the button which now has an ellipses instead of a plus. This gives you the option to specify All, Any or None filters.