mirror of
https://github.com/morgan9e/macos-stats
synced 2026-04-14 00:04:15 +09:00
fix: removed scheduler and speed limits for Apple Silicon (#749)
This commit is contained in:
@@ -204,3 +204,13 @@ public extension Notification.Name {
|
||||
static let refreshPublicIP = Notification.Name("refreshPublicIP")
|
||||
static let resetTotalNetworkUsage = Notification.Name("resetTotalNetworkUsage")
|
||||
}
|
||||
|
||||
public var isARM: Bool {
|
||||
get {
|
||||
var value = false
|
||||
#if arch(arm64)
|
||||
value = true
|
||||
#endif
|
||||
return value
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user