feat(macos): hover HUD for activity

This commit is contained in:
Peter Steinberger
2025-12-19 00:03:58 +01:00
parent 0c06276b48
commit 47510e2912
8 changed files with 512 additions and 70 deletions

View File

@@ -29,12 +29,12 @@ enum IconState: Equatable {
var badgeSymbolName: String {
switch self.activity {
case .tool(.bash): "terminal.fill"
case .tool(.read): "doc.text.magnifyingglass"
case .tool(.bash): "chevron.left.slash.chevron.right"
case .tool(.read): "doc"
case .tool(.write): "pencil"
case .tool(.edit): "square.and.pencil"
case .tool(.edit): "pencil.tip"
case .tool(.attach): "paperclip"
case .tool(.other), .job: "wrench.and.screwdriver.fill"
case .tool(.other), .job: "gearshape.fill"
}
}