@@ -33,6 +33,7 @@ enum FileAction: String, CaseIterable, Identifiable {
3333 case convertMedia
3434 // Navigation
3535 case revealInFinder
36+ case console
3637 // Danger zone
3738 case delete
3839 // Info section
@@ -66,6 +67,7 @@ enum FileAction: String, CaseIterable, Identifiable {
6667 case . share: return " Share... "
6768 case . convertMedia: return " Convert Media... "
6869 case . revealInFinder: return " Show in Finder "
70+ case . console: return " Console "
6971 case . delete: return " Move to Trash "
7072 case . getInfo: return " Get Info "
7173 case . newFolder: return " New Folder "
@@ -94,6 +96,7 @@ enum FileAction: String, CaseIterable, Identifiable {
9496 case . share: return " square.and.arrow.up "
9597 case . convertMedia: return " arrow.triangle.2.circlepath "
9698 case . revealInFinder: return " folder "
99+ case . console: return " terminal "
97100 case . delete: return " trash "
98101 case . getInfo: return " info.circle "
99102 case . newFolder: return " folder.badge.plus "
@@ -160,6 +163,7 @@ enum FileAction: String, CaseIterable, Identifiable {
160163 . share,
161164 // divider
162165 . revealInFinder,
166+ . console,
163167 // divider — File Operations submenu: cut, copy, paste, duplicate, createLink, rename, delete, getInfo
164168 // divider
165169 . getInfo,
0 commit comments