mirror of
https://github.com/Toxblh/MTMR.git
synced 2026-01-10 00:58:37 +00:00
added speed units for network (#440)
Co-authored-by: akonst <akonst@cqg.com>
This commit is contained in:
parent
36bf749a46
commit
a879498e4c
@ -274,7 +274,7 @@ enum ItemType: Decodable {
|
|||||||
case nightShift
|
case nightShift
|
||||||
case dnd
|
case dnd
|
||||||
case pomodoro(workTime: Double, restTime: Double)
|
case pomodoro(workTime: Double, restTime: Double)
|
||||||
case network(flip: Bool)
|
case network(flip: Bool, units: String)
|
||||||
case darkMode
|
case darkMode
|
||||||
case swipe(direction: String, fingers: Int, minOffset: Float, sourceApple: SourceProtocol?, sourceBash: SourceProtocol?)
|
case swipe(direction: String, fingers: Int, minOffset: Float, sourceApple: SourceProtocol?, sourceBash: SourceProtocol?)
|
||||||
case upnext(from: Double, to: Double, maxToShow: Int, autoResize: Bool)
|
case upnext(from: Double, to: Double, maxToShow: Int, autoResize: Bool)
|
||||||
@ -424,7 +424,8 @@ enum ItemType: Decodable {
|
|||||||
|
|
||||||
case .network:
|
case .network:
|
||||||
let flip = try container.decodeIfPresent(Bool.self, forKey: .flip) ?? false
|
let flip = try container.decodeIfPresent(Bool.self, forKey: .flip) ?? false
|
||||||
self = .network(flip: flip)
|
let units = try container.decodeIfPresent(String.self, forKey: .units) ?? "dynamic"
|
||||||
|
self = .network(flip: flip, units: units)
|
||||||
|
|
||||||
case .darkMode:
|
case .darkMode:
|
||||||
self = .darkMode
|
self = .darkMode
|
||||||
|
|||||||
@ -382,8 +382,8 @@ class TouchBarController: NSObject, NSTouchBarDelegate {
|
|||||||
barItem = DnDBarItem(identifier: identifier)
|
barItem = DnDBarItem(identifier: identifier)
|
||||||
case let .pomodoro(workTime: workTime, restTime: restTime):
|
case let .pomodoro(workTime: workTime, restTime: restTime):
|
||||||
barItem = PomodoroBarItem(identifier: identifier, workTime: workTime, restTime: restTime)
|
barItem = PomodoroBarItem(identifier: identifier, workTime: workTime, restTime: restTime)
|
||||||
case let .network(flip: flip):
|
case let .network(flip: flip, units: units):
|
||||||
barItem = NetworkBarItem(identifier: identifier, flip: flip)
|
barItem = NetworkBarItem(identifier: identifier, flip: flip, units: units)
|
||||||
case .darkMode:
|
case .darkMode:
|
||||||
barItem = DarkModeBarItem(identifier: identifier)
|
barItem = DarkModeBarItem(identifier: identifier)
|
||||||
case let .swipe(direction: direction, fingers: fingers, minOffset: minOffset, sourceApple: sourceApple, sourceBash: sourceBash):
|
case let .swipe(direction: direction, fingers: fingers, minOffset: minOffset, sourceApple: sourceApple, sourceBash: sourceBash):
|
||||||
|
|||||||
@ -13,9 +13,11 @@ class NetworkBarItem: CustomButtonTouchBarItem, Widget {
|
|||||||
static var identifier: String = "com.toxblh.mtmr.network"
|
static var identifier: String = "com.toxblh.mtmr.network"
|
||||||
|
|
||||||
private let flip: Bool
|
private let flip: Bool
|
||||||
|
private let units: String
|
||||||
|
|
||||||
init(identifier: NSTouchBarItem.Identifier, flip: Bool = false) {
|
init(identifier: NSTouchBarItem.Identifier, flip: Bool = false, units: String) {
|
||||||
self.flip = flip
|
self.flip = flip
|
||||||
|
self.units = units
|
||||||
super.init(identifier: identifier, title: " ")
|
super.init(identifier: identifier, title: " ")
|
||||||
startMonitoringProcess()
|
startMonitoringProcess()
|
||||||
}
|
}
|
||||||
@ -86,15 +88,42 @@ class NetworkBarItem: CustomButtonTouchBarItem, Widget {
|
|||||||
|
|
||||||
func getHumanizeSize(speed: UInt64) -> String {
|
func getHumanizeSize(speed: UInt64) -> String {
|
||||||
let humanText: String
|
let humanText: String
|
||||||
|
|
||||||
if speed < 1024 {
|
func speedB(speed: UInt64)-> String {
|
||||||
humanText = String(format: "%.0f", Double(speed)) + " B/s"
|
return String(format: "%.0f", Double(speed)) + " B/s"
|
||||||
} else if speed < (1024 * 1024) {
|
}
|
||||||
humanText = String(format: "%.1f", Double(speed) / 1024) + " KB/s"
|
|
||||||
} else if speed < (1024 * 1024 * 1024) {
|
func speedKB(speed: UInt64)-> String {
|
||||||
humanText = String(format: "%.1f", Double(speed) / (1024 * 1024)) + " MB/s"
|
return String(format: "%.1f", Double(speed) / 1024) + " KB/s"
|
||||||
} else {
|
}
|
||||||
humanText = String(format: "%.2f", Double(speed) / (1024 * 1024 * 1024)) + " GB/s"
|
|
||||||
|
func speedMB(speed: UInt64)-> String {
|
||||||
|
return String(format: "%.1f", Double(speed) / (1024 * 1024)) + " MB/s"
|
||||||
|
}
|
||||||
|
|
||||||
|
func speedGB(speed: UInt64)-> String {
|
||||||
|
return String(format: "%.2f", Double(speed) / (1024 * 1024 * 1024)) + " GB/s"
|
||||||
|
}
|
||||||
|
|
||||||
|
switch self.units {
|
||||||
|
case "B/s":
|
||||||
|
humanText = speedB(speed: speed)
|
||||||
|
case "KB/s":
|
||||||
|
humanText = speedKB(speed: speed)
|
||||||
|
case "MB/s":
|
||||||
|
humanText = speedMB(speed: speed)
|
||||||
|
case "GB/s":
|
||||||
|
humanText = speedGB(speed: speed)
|
||||||
|
default:
|
||||||
|
if speed < 1024 {
|
||||||
|
humanText = speedB(speed: speed)
|
||||||
|
} else if speed < (1024 * 1024) {
|
||||||
|
humanText = speedKB(speed: speed)
|
||||||
|
} else if speed < (1024 * 1024 * 1024) {
|
||||||
|
humanText = speedMB(speed: speed)
|
||||||
|
} else {
|
||||||
|
humanText = speedGB(speed: speed)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return humanText
|
return humanText
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user