From 46760080c149ce7e61225330765c418b26174098 Mon Sep 17 00:00:00 2001 From: Mike Clarke Date: Thu, 29 Nov 2018 17:17:30 +0000 Subject: Add Swift helper to set custom file icons --- ports/darwin_dmg/fileicon | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 ports/darwin_dmg/fileicon (limited to 'ports/darwin_dmg/fileicon') 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") +} -- cgit v1.1