|
let nonSystemURLs: [URL] = volumes.filter({ |
|
!"\($0)".contains("/System") |
|
}) |
What would you think about ignoring mounted Developer Disk Images? ex:
let nonSystemURLs: [URL] = volumes.filter {
!($0.path.hasPrefix("/System/Volumes/") || $0.path.hasPrefix("/Library/Developer/CoreSimulator/"))
}
Or, may be, just show physical disks?
I like the idea of displaying the volume name with the path. May be name and path could cycle on user click?
It would also be awesome if other volume "space" is represented with the diagonal line pattern, just like the Storage view:

SimpleMacStats/SimpleMacStats/SystemResources.swift
Lines 231 to 233 in 37eaefa
What would you think about ignoring mounted Developer Disk Images? ex:
Or, may be, just show physical disks?
I like the idea of displaying the volume name with the path. May be name and path could cycle on user click?
It would also be awesome if other volume "space" is represented with the diagonal line pattern, just like the Storage view: