mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 15:11:02 +00:00
9 lines
267 B
Go
9 lines
267 B
Go
package config
|
|
|
|
// GetPlatformDefaultConfig gets the defaults for the platform
|
|
func GetPlatformDefaultConfig() OSConfig {
|
|
return OSConfig{
|
|
OpenCommand: `sh -c "xdg-open {{filename}} >/dev/null"`,
|
|
OpenLinkCommand: `sh -c "xdg-open {{link}} >/dev/null"`,
|
|
}
|
|
}
|