Ini menjawab pertanyaan yang lebih spesifik dalam komentar Anda untuk pertanyaan awal Anda. Mungkin bisa menjadi pertanyaan baru karena jauh lebih spesifik.
Untuk mengatur "Label Warna" dari file yang dipilih saat ini, Anda dapat menggabungkan program AppleScript (atau program shell yang menggunakan osascript ) dengan banyak aplikasi "peluncur" (Quicksilver, FastScripts, dll.) Yang dapat menjalankan AppleScript program (atau program shell) berdasarkan kombinasi tombol pintas.
Untuk salah satu skrip di bawah ini, rekatkan ke dalam Script Editor / Editor AppleScript dan simpan dalam format "script" (atau format apa pun yang digunakan peluncur pilihan Anda). Tempat yang biasa untuk skrip yang disimpan tersebut adalah ~ / Library / Scripts / Applications / Finder, tetapi, tergantung pada peluncur Anda, Anda dapat menggunakan lokasi lain.
Berikut ini adalah versi sederhana yang dapat Anda hard-kode ke salah satu label:
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
Jika Anda hanya memiliki beberapa label yang Anda gunakan, Anda dapat menyimpan beberapa salinan dari ini dan mengikat kunci untuk setiap salinan.
Ini adalah versi yang selalu meminta Anda untuk menggunakan label mana:
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
Ketika dialog muncul, ketik satu dari 0-7 untuk memilih label, lalu tekan Return untuk menerapkannya pada item yang dipilih di Finder.