mirror of
https://github.com/neon443/ShhShell.git
synced 2026-03-11 13:26:16 +00:00
remove the bell emoji, just the flat one for now
This commit is contained in:
@@ -12,7 +12,6 @@ import SwiftTerm
|
|||||||
@MainActor
|
@MainActor
|
||||||
final class SSHTerminalView: TerminalView, Sendable, @preconcurrency TerminalViewDelegate {
|
final class SSHTerminalView: TerminalView, Sendable, @preconcurrency TerminalViewDelegate {
|
||||||
var handler: SSHHandler?
|
var handler: SSHHandler?
|
||||||
// var sshQueue = DispatchQueue(label: "sshQueue")
|
|
||||||
|
|
||||||
public convenience init(frame: CGRect, handler: SSHHandler) {
|
public convenience init(frame: CGRect, handler: SSHHandler) {
|
||||||
self.init(frame: frame)
|
self.init(frame: frame)
|
||||||
|
|||||||
@@ -23,8 +23,9 @@ struct ShellView: View {
|
|||||||
Group {
|
Group {
|
||||||
Color.gray.opacity(0.2)
|
Color.gray.opacity(0.2)
|
||||||
.transition(.opacity)
|
.transition(.opacity)
|
||||||
Text("🔔")
|
Image(systemName: "bell.fill")
|
||||||
.font(.title)
|
.font(.largeTitle)
|
||||||
|
.shadow(color: .black, radius: 5)
|
||||||
}
|
}
|
||||||
.opacity(handler.bell ? 1 : 0)
|
.opacity(handler.bell ? 1 : 0)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user