aboutsummaryrefslogtreecommitdiff
path: root/ports/darwin_dmg/fileicon
diff options
context:
space:
mode:
Diffstat (limited to 'ports/darwin_dmg/fileicon')
-rwxr-xr-xports/darwin_dmg/fileicon33
1 files changed, 33 insertions, 0 deletions
diff --git a/ports/darwin_dmg/fileicon b/ports/darwin_dmg/fileicon
new file mode 100755
index 0000000..1e1d2a2
--- /dev/null
+++ b/ports/darwin_dmg/fileicon
@@ -0,0 +1,33 @@
+#! /usr/bin/swift
+
+import Darwin
+import Cocoa
+
+func die(_ msg: String) {
+ fputs("\(msg)\n", stderr)
+ exit(1)
+}
+
+let name = CommandLine.arguments[0]
+
+/*
+ * We don't do anything with the 'set' at the moment; it's just there to
+ * reserve a space for a subcommand to allow for future expansion without
+ * changing the interface.
+ */
+if CommandLine.argc == 4 && CommandLine.arguments[1] == "set" {
+ let target_file = CommandLine.arguments[2]
+ let icon_file_name = CommandLine.arguments[3]
+
+ if let icon = Cocoa.NSImage.init(contentsOfFile: icon_file_name) {
+ if !NSWorkspace.shared.setIcon(icon, forFile: target_file) {
+ die("Failed to set icon for '\(target_file)'")
+ }
+ }
+ else {
+ die("Failed to read icon file '\(icon_file_name)'")
+ }
+}
+else {
+ die("Usage: \(name) set FILE ICON_FILE")
+}