remove the bell emoji, just the flat one for now

This commit is contained in:
neon443
2025-06-27 09:20:04 +01:00
parent b43d92e2d5
commit b59c52f239
2 changed files with 3 additions and 3 deletions

View File

@@ -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)

View File

@@ -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)