¿Hay alguna forma de imprimir cosas en la barra táctil, preferiblemente con el terminal? He tratado de encontrar documentación pero no encuentro nada.
Respuesta
¿Demasiados anuncios?
Sreejesh Kumar
Puntos
728
Un poco de AppleScript
-- https://forum.latenightsw.com/t/set-touchbar-to-show-f-keys/638/8
set touchBar to true
try
set touchBarText to do shell script "pgrep TouchBarServer"
on error
set touchBar to false
end try
if touchBar is true then
set fkeysSet to true
try
set fkeysSetText to do shell script "defaults read com.apple.touchbar.agent.plist | grep YOUR.APP.PREFS.HERE | grep functionKeys"
on error
set fkeysSet to false
end try
if fkeysSet is false then display dialog "Follow the instructions, etc."
end if