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