Created
April 8, 2017 13:49
-
-
Save pavelz/7899bfdb80b276b0ed820d3af8159f94 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# code from https://superuser.com/questions/168927/mac-os-x-how-to-change-the-color-label-of-files-from-the-terminal | |
# Set Finder label color | |
if [ $# -lt 2 ]; then | |
echo "USAGE: setlabel color file1 [file2] ..." | |
echo "Sets the Finder label (color) for files" | |
echo "Possible colors: None Orange Red Yellow Blue Purple Green Gray" | |
else | |
labelargs=$@ | |
color=$1 | |
file=$2 | |
colorarray=( None Orange Red Yellow Blue Purple Green Gray ) | |
colorvalue=8 | |
for i in {0..7} | |
do | |
if [ "${color}" == ${colorarray[${i}]} ] | |
then | |
colorvalue=${i} | |
fi | |
done | |
if [ "${colorvalue}" == "8" ] | |
then | |
echo Color ${color} is not recognized. | |
echo "Possible colors: None Orange Red Yellow Blue Purple Green Gray" | |
else | |
osascript - ${colorvalue} ${file} << EOF >/dev/null 2>&1 | |
on run argv | |
set labelIndex to (item 1 of argv as number) | |
repeat with i from 2 to (count of argv) | |
tell application "Finder" | |
set theFile to POSIX file (item i of argv) as alias | |
set label index of theFile to labelIndex | |
end tell | |
end repeat | |
end run | |
EOF | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment