The file /Users/neog/Apps/macOS/NEOGHub/NEOGCommand/Components/Widgets/LiveConsumptionWidget.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 182→ } 183→ } 184→ } 185→ 186→ private var rateColor: Color { 187→ if tracker.costPerHour > 5.0 { return .red } 188→ if tracker.costPerHour > 2.0 { return .orange } 189→ return .green 190→ } 191→ 192→ private func formatLiveDuration(_ seconds: Double) -> String { 193→ let totalSeconds = Int(seconds) 194→ let hours = totalSeconds / 3600 195→ let minutes = (totalSeconds % 3600) / 60 196→ let secs = totalSeconds % 60 197→ 198→ if hours > 0 { 199→ return String(format: "%dh %dm %ds", hours, minutes, secs) 200→ } else if minutes > 0 { 201→ return String(format: "%dm %ds", minutes, secs) 202→ } 203→ return String(format: "%ds", secs) 204→ } 205→} 206→ 207→// MARK: - Pulsing Dot 208→ 209→struct PulsingDot: View {