Xmonad and Xmobar: avoidStruts no longer exposes Xmobar

I've been using Xmonad with the same config for months now. I reinstalled Arch recently, and ever since then avoidStruts no longer keeps Xmobar from being hidden behind windows.
I have installed the xmonad and xmonad-contrib packages; my config compiles without errors. I'm at a loss here because I can't identify any changes that may have been made to either of the aforementioned packages that might cause this issue.
xmonad.hs
import XMonad
import Data.Monoid
import Data.Ratio ((%))
import System.Exit
import XMonad.Hooks.EwmhDesktops
import XMonad.Hooks.DynamicLog
import XMonad.Hooks.ManageDocks
import XMonad.Hooks.UrgencyHook
import XMonad.Layout.NoBorders
import XMonad.Layout.Named
import XMonad.Layout.Grid
import XMonad.Layout.IM
import XMonad.Util.Run(spawnPipe)
import System.IO
import qualified XMonad.StackSet as W
import qualified Data.Map as M
-- The preferred terminal program, which is used in a binding below and by
-- certain contrib modules.
myTerminal = "urxvt"
-- Whether focus follows the mouse pointer.
myFocusFollowsMouse :: Bool
myFocusFollowsMouse = True
-- Width of the window border in pixels.
myBorderWidth = 2
-- modMask lets you specify which modkey you want to use. The default
-- is mod1Mask ("left alt"). You may also consider using mod3Mask
-- ("right alt"), which does not conflict with emacs keybindings. The
-- "windows key" is usually mod4Mask.
myModMask = mod4Mask
-- The default number of workspaces (virtual screens) and their names.
-- By default we use numeric strings, but any string may be used as a
-- workspace name. The number of workspaces is determined by the length
-- of this list.
-- A tagging example:
-- > workspaces = ["web", "irc", "code" ] ++ map show [4..9]
myWorkspaces = ["1","2","3","4","5","6","7","8","9"]
-- Border colors for unfocused and focused windows, respectively.
myNormalBorderColor = "#404040"
-- myFocusedBorderColor = "#0080ff"
myFocusedBorderColor = "#ff0000"
-- Key bindings. Add, modify or remove key bindings here.
myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
-- launch a terminal
[ ((modm .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf)
-- launch dmenu
, ((modm, xK_p ), spawn "dmenu_run")
-- launch gmrun
, ((modm .|. shiftMask, xK_p ), spawn "gmrun")
-- close focused window
, ((modm .|. shiftMask, xK_c ), kill)
-- close focused window (2)
, ((modm, xK_z ), kill)
-- close focused window (3)
, ((modm, xK_Escape), kill)
-- Rotate through the available layout algorithms
, ((modm, xK_space ), sendMessage NextLayout)
-- Reset the layouts on the current workspace to default
, ((modm .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf)
-- Resize viewed windows to the correct size
, ((modm, xK_n ), refresh)
-- Move focus to the next window
, ((modm, xK_Tab ), windows W.focusDown)
-- Move focus to the next window
, ((modm, xK_j ), windows W.focusDown)
-- Move focus to the previous window
, ((modm, xK_k ), windows W.focusUp )
-- Move focus to the master window
, ((modm, xK_m ), windows W.focusMaster )
-- Swap the focused window and the master window
, ((modm, xK_Return), windows W.swapMaster)
-- Swap the focused window with the next window
, ((modm .|. shiftMask, xK_j ), windows W.swapDown )
-- Swap the focused window with the previous window
, ((modm .|. shiftMask, xK_k ), windows W.swapUp )
-- Shrink the master area
, ((modm, xK_h ), sendMessage Shrink)
-- Expand the master area
, ((modm, xK_l ), sendMessage Expand)
-- Push window back into tiling
, ((modm, xK_t ), withFocused $ windows . W.sink)
-- Increment the number of windows in the master area
, ((modm , xK_comma ), sendMessage (IncMasterN 1))
-- Deincrement the number of windows in the master area
, ((modm , xK_period), sendMessage (IncMasterN (-1)))
-- Toggle the status bar gap
-- Use this binding with avoidStruts from Hooks.ManageDocks.
-- See also the statusBar function from Hooks.DynamicLog.
-- , ((modm , xK_b ), sendMessage ToggleStruts)
-- Quit xmonad
, ((modm .|. shiftMask, xK_q ), io (exitWith ExitSuccess))
-- Restart xmonad
, ((modm , xK_q ), spawn "xmonad --recompile; xmonad --restart")
-- Start Opera
, ((modm .|. shiftMask, xK_i ), spawn "chromium")
-- Start Thunar
, ((modm .|. shiftMask, xK_f ), spawn "pcmanfm")
-- Start networking gui
, ((modm .|. shiftMask, xK_o ), spawn "wicd-gtk --no-tray")
-- Video Settings
, ((modm .|. shiftMask, xK_v ), spawn "nvidia-settings")
++
-- mod-[1..9], Switch to workspace N
-- mod-shift-[1..9], Move client to workspace N
[((m .|. modm, k), windows $ f i)
| (i, k) <- zip (XMonad.workspaces conf) [xK_1 .. xK_9]
, (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]]
++
-- mod-{w,e,r}, Switch to physical/Xinerama screens 1, 2, or 3
-- mod-shift-{w,e,r}, Move client to screen 1, 2, or 3
[((m .|. modm, key), screenWorkspace sc >>= flip whenJust (windows . f))
| (key, sc) <- zip [xK_w, xK_e, xK_r] [0..]
, (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
-- Mouse bindings: default actions bound to mouse events
myMouseBindings (XConfig {XMonad.modMask = modm}) = M.fromList $
-- mod-button1, Set the window to floating mode and move by dragging
[ ((modm, button1), (\w -> focus w >> mouseMoveWindow w
>> windows W.shiftMaster))
-- mod-button2, Raise the window to the top of the stack
, ((modm, button2), (\w -> focus w >> windows W.shiftMaster))
-- mod-button3, Set the window to floating mode and resize by dragging
, ((modm, button3), (\w -> focus w >> mouseResizeWindow w
>> windows W.shiftMaster))
-- you may also bind events to the mouse scroll wheel (button4 and button5)
-- Layouts:
-- You can specify and transform your layouts by modifying these values.
-- If you change layout bindings be sure to use 'mod-shift-space' after
-- restarting (with 'mod-q') to reset your layout state to the new
-- defaults, as xmonad preserves your old layout settings by default.
-- The available layouts. Note that each layout is separated by |||,
-- which denotes layout choice.
myLayout = tall ||| grid ||| full
where
-- default tiling algorithm partitions the screen into two panes
tiled = Tall nmaster delta ratio
-- The default number of windows in the master pane
nmaster = 1
-- Default proportion of screen occupied by master pane
ratio = 65/100
-- Percent of screen to increment by when resizing panes
delta = 5/100
tall = named "Tall"
$ avoidStruts
$ Tall nmaster delta ratio
grid = named "Grid"
$ avoidStruts
$ withIM (1%7) (Role "buddy_list") (GridRatio (4/3))
full = named "Full"
$ noBorders
$ Full
-- Window rules:
-- Execute arbitrary actions and WindowSet manipulations when managing
-- a new window. You can use this to, for example, always float a
-- particular program, or have a client always appear on a particular
-- workspace.
-- To find the property name associated with a program, use
-- > xprop | grep WM_CLASS
-- and click on the client you're interested in.
-- To match on the WM_NAME, you can use 'title' in the same way that
-- 'className' and 'resource' are used below.
myManageHook = composeAll
[ className =? "MPlayer" --> doFloat
, className =? "Gimp" --> doFloat
-- , className =? "Nm-connection-editor" --> doFloat
-- , className =? "Wicd-client.py" --> doFloat
, resource =? "desktop_window" --> doIgnore
, resource =? "kdesktop" --> doIgnore
-- , className =? "Xfce4-notifyd" --> doIgnore
-- Event handling
-- * EwmhDesktops users should change this to ewmhDesktopsEventHook
-- Defines a custom handler function for X Events. The function should
-- return (All True) if the default handler is to be run afterwards. To
-- combine event hooks use mappend or mconcat from Data.Monoid.
-- myEventHook = mempty
myEventHook = fullscreenEventHook
-- Status bars and logging
-- Perform an arbitrary action on each internal state change or X event.
-- See the 'XMonad.Hooks.DynamicLog' extension for examples.
myLogHook h = dynamicLogWithPP $ xmobarPP
{ ppOutput = hPutStrLn h
, ppTitle = xmobarColor "green" "" . shorten 200
, ppUrgent = xmobarColor "white" "red" . wrap "" ""
-- Startup hook
-- Perform an arbitrary action each time xmonad starts or is restarted
-- with mod-q. Used by, e.g., XMonad.Layout.PerWorkspace to initialize
-- per-workspace layout choices.
-- By default, do nothing.
myStartupHook = return ()
-- Run xmonad with the settings you specify.
main = do
xmproc <- spawnPipe "/usr/bin/xmobar /home/chris/.xmonad/xmobarrc"
xmonad $ withUrgencyHook NoUrgencyHook $ defaultConfig
{ terminal = myTerminal
, focusFollowsMouse = myFocusFollowsMouse
, borderWidth = myBorderWidth
, modMask = myModMask
, workspaces = myWorkspaces
, normalBorderColor = myNormalBorderColor
, focusedBorderColor = myFocusedBorderColor
, keys = myKeys
, mouseBindings = myMouseBindings
, layoutHook = myLayout
, manageHook = myManageHook
, handleEventHook = myEventHook
, logHook = myLogHook xmproc
, startupHook = myStartupHook
xmobarrc
Config
{ font = "xft:ProFont:pixelsize=12"
, bgColor = "#000000"
-- used to make the bar appear correctly after Mod-q in older xmonad implementations (0.9.x)
-- doesn't seem to do anything anymore (0.10, darcs)
-- , lowerOnStart = False
, commands =
[ Run Wireless "wlan0" ["-t", "<essid> <quality>%"] 10
, Run CommandReader "/home/chris/.xmonad/volume-listener.sh" "vol"
, Run CommandReader "/home/chris/.xmonad/hdaps-listener.sh" "hdaps"
, Run Battery
[ "-t", "<acstatus> <left>%"
, "-f", "AC/online"
, "-o", "Bat"
, "-O", "AC"
20
, Run Date "%a %b %_d %H:%M" "date" 10
, Run StdinReader
, sepChar = "%"
, alignSep = "}{"
, template = "%StdinReader% }{ <fc=#ff0000>%hdaps%</fc> %wlan0wi% Vol %vol% %battery% <fc=#ee9a00>%date%</fc> "
Last edited by cheese, lol (2012-10-26 03:15:39)

Downgrade to xmobar-0.15. See here.

Similar Messages

  • Xmonad and dbus

    So I can start Xmonad with dbus but then the keyboard doesn't work (mouse works fine however), and xmobar doesn't show up. If I start it without dbus started, everything works fine. I can then start dbus and things continue to work fine. Any ideas on getting xmonad to start with dbus started?

    mreschke wrote:Explicitly starting dbus before Hal works, must have both
    No - hal has been deprecated. From Xorg 1.8 it is no longer necessary.
    News wrote:After upgrading to this release, configuration for input devices in hal is ignored.
    http://www.archlinux.org/news/xorg-18-moves-to-extra/

  • I've updated to the most recent version of iTunes and I can no longer see any of my old music on my mac.  All the music is still available on my ipad.  How can i download the music on my mac?

    I've updated to the most recent version of iTunes and I can no longer see any of my old music on my mac.  All the music is still available on my ipad.  How can i download the music on my mac?

    First, are you positive it is really not there?  Have you looked in your iTunes folder in your Music folder, and in the media folders there? Do you see your media files?
    If your media are gone it is a lot easier to restore from a proper computer backup.  Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was planned with you maintaining a master copy of your media on a computer which is itself properly backed up against loss. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchases which can be transferred to a computer.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only purchases from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software.  See this document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991

  • TS1741 my iPhone and iPod are no longer being seen by iTunes on my computer. Everything is up to date.

    my iPhone and iPod are no longer being seen by iTunes. All software is up to date. I have tried following the fixes suggested by the support on iTunes, to no avail. my computer said that my iPhone 5 is "older" and that usb2 is not compatible with usb3 on my computer. it worked until a week ago. can someone help?

    See TS1538: iOS: Device not recognized in iTunes for Windows.
    tt2

  • Installed latest itunes update and computer tried to burn a playlist to CD and realized computer no longer recognizes my CD/DVD drive. This is an APPLE Itunes issue. Help!. HPPavillion DV6 64 bit, windows 7

    Installed latest itunes update and computer tried to burn a playlist to CD and realized computer no longer recognizes my CD/DVD drive. After doing some data mining, found out from community this is an long standing APPLE problem- which doesn't get much tech support in terms of fixes. I have an HPPavillion DV6 64 bit, Windows 7 OS . After reading an earlier complaint from 2009 in the support community,  I ran diagnostics from ITunes which gave the following result. Can someone please help? (I'm not enough of a techie to know what I'm doing or how to locate /reinstall CD drivers. I am searching for driver disc but cannot locate.)
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    Hewlett-Packard HP Pavilion dv6 Notebook PC
    iTunes 10.6.3.25
    QuickTime 7.7.2
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    VoiceOver Kit 1.4.2 (222093/222742)
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0043AC7C0368E428
    Current user is not an administrator.
    The current local date and time is 2012-07-24 23:43:08.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    ATI Technologies Inc., AMD M880G with ATI Mobility Radeon HD 4250
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 10.6.3.25 (x64) is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.

    Doublechecking ... did you have CD/DVD drive tests checked when you ran those diagnostics? (I'm not seeing the CD/DVD test results down the bottom of the results where I'd expect to see them.)
    For example, here's what I get:
    Microsoft Windows 7 x64 Ultimate Edition Service Pack 1 (Build 7601)
    Acer Aspire X3400
    iTunes 10.6.3.25
    QuickTime 7.7.2
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 003CAD7C0A1258F8
    Current user is not an administrator.
    The current local date and time is 2012-07-26 10:42:53.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is disabled.
    HDCP is supported.
    Core Media is not supported. (16008)
    Video Display Information
    ATI Technologies Inc., AMD Radeon HD 6570
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: d6a87ba725121aa1240b1ce936c23470
    iPodService 10.6.3.25 (x64) is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    E: ATAPI DVD A  DH16ABSH, Rev YA12
    Data or MP3 CD in drive.
    Found 1 songs on CD, playing time 255:57 on CDROM media.
    Track 1, start time 00:02:00
    Get drive speed succeeded.
    The drive CDR speeds are:   4.
    The drive CDRW speeds are:   4.

  • Since downloading ios5 on my iphone 4 the capacity guage in itunes shows other as over 21Gb and i can no longer fit any music on it. How do I get rid of the other stuff? other

    Since downloading ios5 on my iphone 4 a few days ago, the capacity guage in itunes shows "other" as over 21Gb and i can no longer fit any music on my iphone.
    How do I get rid of the other stuff?
    capacity available on 32 Gb iphone is 28.49Gb
    i previously had 21.97 Gb music, over 6 Gb photos, about 1Gb of apps, and minute amount of audio
    now i have no music, 5.4 Gb photos and similar (0.8Gb) for  apps and audio. i have deleted heaps of photos and unused apps to try to make space but obviosly this is a much bigger problem. I also created a smaller music folder on itunes to sync to but at present no music is selected for syncing due to the lack of available space.
    i have 15Gb icloud account now also which is about half full.
    Ive done a little research and heard similar tales but with much smaller other totals than this. Can you help?
    i cant update my apps as i get a message saying i do not have enough available space.

    I had the same problem today and was able to resolve it without having to do a restore or reset. The problem had something to do with my mail accounts. The upgrade reset my mail settings, switching both my gmail and my .mac mail to "archive all mail". I went into the General Settings, disabled that setting, and resynced the phone. The "other" storage allottment dropped back down to less than a gig.
    Before you restore or reset, I would try that first.

  • I upgraded to 10.5.0.142 on windows 7 and I can no longer add any music to my libraries

    I upgraded to 10.5.0.142 on windows 7 and I can no longer add any music to my libaries.
    It makes a notification sound, but there is no message, and it just doesn't do anything.
    How frustrating. Considering apple make excellent products, iTunes is terrible.

    I find a way to add music.
    Make sure iTunes is closed.
    Go to the song file on your computer. If the file has the little black musical iTunes symbol as its icon, just double click the file. It should open up in iTunes and stay in you library.
    If the little black musical iTunes symbol isn't next to the file, right click the file and go to "Open With" and then click on "iTunes". It should open up in iTunes and stay in your library.
    Yeaaa its the long way but that's the only way for now, unfortunately.

  • I bought adobe suite 4 student edition a few years ago and I am no longer a student and my laptop in which I have adobe suite has recently got a virus and I must uninstall the adobe suite in or to wipe the computer. If I uninstall the student edition and

    I bought adobe suite 4 student edition a few years ago and I am no longer a student and my laptop in which I have adobe suite has recently got a virus and I must uninstall the adobe suite in or to wipe the computer. If I uninstall the student edition and reinstall once the virus is removed from the computer will I have to go through the student product verification process or can I simply use the product key to reinstall the adobe suite?

    mikek05 wrote:
    …So if I use the disks that it came with to uninstall adobe suite and use the same disks to reinstall once I have fixed the computer…
    Re-read my post:  You must deactivate before uninstalling.

  • I have deleted a contact on my phone, and they are no longer in my contacts list however when I go to text there name still appears as (other) is there a way of deleting them completely of my phone? - I have tried everything!!

    I have deleted a contact on my phone, and they are no longer in my contacts list however when I go to text if i type in the letter there name begins with there name still appears as (other) is there a way of deleting them completely of my phone? - I have tried everything!!
    I have resorted my phone, used the spring clean app - none of these work, Have I saved this number somewhere else but I just can't get to it?

    You got the new iphone?????   I have same problem.  I transferred audiobooks to device to find no audiobooks on device (despite it being in iTunes as if it was).  Have you found a solution?????   I even tried to change import settings on format transfer but hasn't worked. 

  • Although my ipod shows the number of steps, calories, and time, it no longer is saving it to the history. also when I open the history it takes me to May 2010 instead of the current date. Any ideas on how to get it to start recording the history again?

    Although my ipod shows the number of steps, calories, and time, it no longer is saving it to the history. Also when I open the history it takes me to May 2010 instead of the current date. Any ideas on how to get it to start recording the history again?

    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable                     
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar
    The missing apps could have been done by setting the Restrictions that can hid those apps. If the backup was made with those retrictions set the the Restrictions are also restored.
    Thus, if you get it to work restore to factory settings/new iPod, not from backup                               
    You can redownload most iTunes purchases by:        
      Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I resently cracked my screen on my iPhone 4 and had to get a new one... Whe backed the old phone up it didn't save my old apps and now I no longer have that phone...  How can I recover a list of all my apps?

    I resently cracked the screen on my iPhone 4 and had to get a new one... When i backed the old phone up it didn't save my old apps and now I no longer have that phone...  How can I recover a list of all my apps?

    Backup does not include apps,music,vids,etc
    Backing up, updating, and restoring iPad, iPod touch, and iPhone software
    You can loo up your purchases in your purchase history ( in your account in itunes)  and unlike music, you can redownload apps.
    How to redownload purchased apps from the App Store

  • My old email address was hacked and I am no longer able to access it. How can i reset my icloud ID without losing all of my pictures and more inportantly contacts? I have created a new ID but i cannot seem to use it until I delete the old account

    my old email address was hacked and I am no longer able to access it. How can i reset my icloud ID without losing all of my pictures and more importantly contacts? I have created a new ID but i cannot seem to use it until I delete the old account

    You need to use the old ID and password to delete the iCloud account. After you delete the old account, you can sign in with the new ID in iCloud.
    Have you seen this.
    http://support.apple.com/kb/HT5796
    iCloud
    iOS 6 and later: Go to Settings > iCloud.
    If you signed out before changing your Apple ID, enter your current Apple ID to sign in. The data from your iCloud account will download to your device.
    If you're still signed in with your previous Apple ID:
    Scroll down and tap Delete Account. Depending on what iCloud options are turned on, you'll be asked to confirm that you want to delete data from your device. To confirm, tap Delete. (If you're using iOS 7 and have Find My iPhone turned on, you'll be asked to enter the password for your previous Apple ID. Enter the password, then tap Turn Off.) The data will be deleted from your device, but not from iCloud.
    Enter your current Apple ID to sign in. The data from your iCloud account will download again to your device.

  • How can i update my old 2006 iMac Intel core 2 duo running 10.6.8 to OSX Lion so that I can sync using iCloud with my newer devices?  Mountain Lion is not an option for my older model and Lion is no longer available at App store.

    How can i update my old 2006 iMac Intel core 2 duo running 10.6.8 to OSX Lion so that I can sync using iCloud with my newer devices?  Mountain Lion is not an option for my older model and Lion is no longer available at App store. 

    Call Apple's online store's telesales agents: 1-800-MY-APPLE (1-800-692-7753) or Customer Service and Sales Support at 1-800-676-2775. For Lion you'll get a redemptions code via e-mail and need to DL from the Mac Apple Store (requires SL 10.6.6+).

  • I changed my Apple ID, now I can't login to iCloud because it still has my old Apple ID and the password no longer works to log me in. How can I get back into iCloud so that I can switch off Find my iPhone so I can make these changes? Thank you.

    I changed my Apple ID, now I can't login to iCloud because it still has my old Apple ID and the password no longer works to log me in. How can I get back into iCloud so that I can switch off Find my iPhone so I can make these changes? Thank you. (iPhone 4s)

    Well, you're gonna have to recover the password for that Apple ID:
    http://support.apple.com/kb/ht5787

  • My iPad and iPhone will no longer sync to iTunes... help!

    My iPod and iPad will no longer sync to iTunes and I have the lastest updates on all devices.

    Try one or more of the following
    > Restart your computer
    > Uninstall & Reinstall iTunes (iClarified - Mac OS X - How to Completely Uninstall iTunes (Mac))
    > Reset iOS device (will NOT delete everything) [Settings>>General>>Reset>>Reset All Settings]
    > Restore iOS device (will delete everything)
    > Make sure both iTunes and iOS firmware is up to date.
    Extra Links:
    iOS: Device not recognized in iTunes for Mac OS X
    iOS: Syncing with iTunes
    Hope this helps.

Maybe you are looking for

  • ...is not abstract and does not override abstract method compare

    Why am I getting the above compile error when I am very clearly overriding abstract method compare (ditto abstract method compareTo)? Here is my code -- which was presented 1.5 code and I'm trying to retrofit to 1.4 -- followed by the complete compil

  • Is upgrading from iTunes 7.7.1.11 to 8.2.1 safe?

    I need to upgrade from iTunes 7.7.1.11 to the newest version of 8.2.1.6, using Windows XP and Internet Explorer 7. As is the case with many posters, the upgrade tool available through iTunes does not work (this is why I've missed a few upgrades in be

  • IMac Glossy Screen: Photo/Design Professionals

    Would be interested to hear thoughts from photography and design professionals who have purchased the new, specifically, 24" iMac with glossy screen and are using it for their work. I am a photographer and designer, and have mine on order for the 28t

  • Problem updating for camera raw

    We are trying to update CS5 camera raw with the 6.7 version of camera raw for different camera , but keep getting an error code instalation failed code U44M2P7.  using windows 7.  Does anyone know why this would be a problem?

  • Azure Search Is Down In North Central US

    Hello Everyone, I can't access my existing search service via the API or portal.azure.com. Also, I've tried creating two new search services in the North Central datacenter, but both failed. The following is what I see in portal.azure.com. Anyone kno