The file /Users/neog/Apps/macOS/NEOGHub/NEOGCommand/Core/Navigation/SidebarView.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 162→ } 163→ } 164→} 165→ 166→// MARK: - Terminal Pulse Animation 167→ 168→struct TerminalPulse: View { 169→ @State private var isPulsing = false 170→ 171→ var body: some View { 172→ ZStack { 173→ Image(systemName: "terminal.fill") 174→ .font(.caption) 175→ .foregroundStyle(.orange) 176→ 177→ Circle() 178→ .stroke(Color.orange.opacity(0.5), lineWidth: 2) 179→ .frame(width: 16, height: 16) 180→ .scaleEffect(isPulsing ? 1.5 : 1.0) 181→ .opacity(isPulsing ? 0 : 0.8) 182→ } 183→ .animation( 184→ .easeOut(duration: 1.0).repeatForever(autoreverses: false), 185→ value: isPulsing 186→ ) 187→ .onAppear { 188→ isPulsing = true 189→ } 190→ } 191→} 192→ 193→#Preview { 194→ SidebarView() 195→ .environmentObject(AppState()) 196→ .frame(width: 250, height: 600) 197→} 198→