He utilizado un descargado de applescript para rápido habilitar/deshabilitar hot corners pero no funciona después de la actualización a Mavericks. Alguien sabe qué pasa?
Aquí está el deshabilitar la secuencia de comandos, espero que te ayudará 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