1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-06 05:28:29 -04:00
Files
bbedward 90291bd627 freebsd: add initial support for running on FreeBSD, excluding Bluez,
ppd, and some things. Add a simple wpa_supplicant backend
2026-07-19 10:31:48 -04:00

10 lines
227 B
Go

package trayrecovery
import "time"
// FreeBSD has no CLOCK_BOOTTIME (clock_gettime(2)), so suspend time since
// boot cannot be measured; the startup recovery scan is skipped.
func timeSuspended() time.Duration {
return 0
}