From b59c52f239d1fecab4b8e24ebc3ecec13c1e0832 Mon Sep 17 00:00:00 2001 From: neon443 <69979447+neon443@users.noreply.github.com> Date: Fri, 27 Jun 2025 09:20:04 +0100 Subject: [PATCH] remove the bell emoji, just the flat one for now --- ShhShell/Views/Terminal/SSHTerminalView.swift | 1 - ShhShell/Views/Terminal/ShellView.swift | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ShhShell/Views/Terminal/SSHTerminalView.swift b/ShhShell/Views/Terminal/SSHTerminalView.swift index a89811b..077e6ff 100644 --- a/ShhShell/Views/Terminal/SSHTerminalView.swift +++ b/ShhShell/Views/Terminal/SSHTerminalView.swift @@ -12,7 +12,6 @@ import SwiftTerm @MainActor final class SSHTerminalView: TerminalView, Sendable, @preconcurrency TerminalViewDelegate { var handler: SSHHandler? -// var sshQueue = DispatchQueue(label: "sshQueue") public convenience init(frame: CGRect, handler: SSHHandler) { self.init(frame: frame) diff --git a/ShhShell/Views/Terminal/ShellView.swift b/ShhShell/Views/Terminal/ShellView.swift index 1ffe5bb..1ff1353 100644 --- a/ShhShell/Views/Terminal/ShellView.swift +++ b/ShhShell/Views/Terminal/ShellView.swift @@ -23,8 +23,9 @@ struct ShellView: View { Group { Color.gray.opacity(0.2) .transition(.opacity) - Text("🔔") - .font(.title) + Image(systemName: "bell.fill") + .font(.largeTitle) + .shadow(color: .black, radius: 5) } .opacity(handler.bell ? 1 : 0)