Esto responde la pregunta más específica en su comentario a su pregunta original. Probablemente podría haber sido una nueva pregunta, ya que es mucho más específica.
Para configurar la "Etiqueta de color" de los archivos seleccionados actualmente, puede combinar un programa AppleScript (o un programa de shell que utiliza osascript ) con cualquiera de las múltiples aplicaciones de "iniciador" (Quicksilver, FastScripts, etc.) que pueden ejecutar AppleScript programas (o programas de shell) basados en una combinación de teclas de acceso directo.
Para cualquiera de las secuencias de comandos a continuación, péguelas en el Editor de secuencias de comandos / Editor de AppleScript y guárdelas en formato de "secuencia de comandos" (o cualquier formato que utilice su iniciador elegido). El lugar habitual para tales scripts guardados sería ~ / Library / Scripts / Applications / Finder, pero, dependiendo de su iniciador, podría usar otras ubicaciones.
Aquí hay una versión simple que puede codificar en cualquiera de las etiquetas:
on run
tell application "Finder"
repeat with anItem in (get selection)
(*
* 0 - none
* 1 - Orange
* 2 - Red
* 3 - Yellow
* 4 - Blue
* 5 - Purple
* 6 - Green
* 7 - Gray
*)
set label index of anItem to 4
end repeat
end tell
end run
Si solo tiene un par de etiquetas que usa, puede guardar un par de copias de esto y vincular una clave a cada copia.
Aquí hay una versión que siempre te solicita qué etiqueta aplicar:
on run
tell application "Finder" to set selectedItems to selection
if length of selectedItems is 0 then
display dialog "Select some items in Finder before running this program." with title "Apply Finder Label to Selected Items" buttons {"OK"} default button {"OK"}
return
end if
set labels to prependIndicies(getLabelNames())
set default to first item of labels
set labelIndex to choose from list labels default items default with prompt "Choose label to apply to selected items" without empty selection allowed and multiple selections allowed
if labelIndex is false then return
set labelIndex to (first word of first item of labelIndex) as number
tell application "Finder"
repeat with anItem in selectedItems
set label index of anItem to labelIndex
end repeat
end tell
end run
to getLabelNames()
set labelNames to {"Orange", "Red", "Yellow", "Blue", "Purple", "Green", "Gray"}
set useCustomLabelNames to true -- change to false if this is too slow or does not work for you
if useCustomLabelNames then
set cmds to {}
repeat with i from 1 to 7
set end of cmds to "defaults read com.apple.Labels Label_Name_" & (8 - i) & " || echo " & quoted form of item i of labelNames
end repeat
set text item delimiters to {";"}
set labelNames to paragraphs of (do shell script (cmds as text))
end if
end getLabelNames
to prependIndicies(theList)
repeat with i from 1 to length of theList
set item i of theList to (i as text) & " - " & (item i of theList)
end repeat
{"0 - none"} & theList
end prependIndicies
Cuando aparezca el cuadro de diálogo, escriba uno de 0-7 para seleccionar una etiqueta, luego presione Intro para aplicarlo a los elementos seleccionados en Finder.