¿Cómo puedo volver a habilitar un Centro de notificaciones deshabilitado permanentemente en Mavericks?

2

Deshabilité mi centro de notificaciones pero quiero volver a habilitarlo nuevamente. Seguí este enlace " ¿Cómo deshabilito permanentemente el Centro de notificaciones en Mavericks? "

    
pregunta mvaneijgen 29.11.2013 - 12:02

1 respuesta

5

Si ejecutó sudo defaults write /System/Library/LaunchAgents/com.apple.notificationcenterui KeepAlive -bool False , en realidad deshabilita el Centro de notificaciones porque cambia los permisos de la lista de 644 a 600. Si cambia KeepAlive a false de alguna otra manera que no cambie los permisos de la lista, NotificationCenter el proceso aún se inicia al iniciar sesión, pero no se reinicia si finaliza por algún motivo. Para deshacer los cambios, ejecute f=/System/Library/LaunchAgents/com.apple.notificationcenterui.plist;sudo defaults write $f KeepAlive -bool true;sudo chmod 644 $f;launchctl load $f .

Si ejecutó launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist , ejecute launchctl load -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist . launchctl unload -w modifica /var/db/launchd.db/com.apple.launchd.peruser.$UID/overrides.plist y sudo launchctl load -w modifies /var/db/launchd.db/overrides.plist , por lo que también podría editar esos archivos directamente.

    
respondido por el user495470 29.11.2013 - 20:01

Lea otras preguntas en las etiquetas