gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

trap_others.go (503B)


      1 //go:build !windows
      2 // +build !windows
      3 
      4 package mousetrap
      5 
      6 // StartedByExplorer returns true if the program was invoked by the user
      7 // double-clicking on the executable from explorer.exe
      8 //
      9 // It is conservative and returns false if any of the internal calls fail.
     10 // It does not guarantee that the program was run from a terminal. It only can tell you
     11 // whether it was launched from explorer.exe
     12 //
     13 // On non-Windows platforms, it always returns false.
     14 func StartedByExplorer() bool {
     15 	return false
     16 }