Utilicé un applecript descargado para habilitar / deshabilitar rápidamente las esquinas activas pero no funcionan después de actualizar a Mavericks. Alguien sabe lo que está pasando?
Aquí está el script para deshabilitar, espero que te ayude a saber de qué estoy hablando.
tell application "System Events"
activate
if UI elements enabled then
tell expose preferences
set properties of the top left screen corner to {activity:none, modifiers:{}}
set properties of the top right screen corner to {activity:none, modifiers:{}}
set properties of the bottom left screen corner to {activity:none, modifiers:{}}
set properties of the bottom right screen corner to {activity:none, modifiers:{}}
end tell
else
tell application "System Preferences"
activate
set current pane to pane "com.apple.preference.universalaccess"
display dialog "UI element scripting is not enabled. Check \"Enable access for assistive devices\""
end tell
end if
end tell
tell application "System Preferences" to quit