in lib/gdk/command/open.rb [49:61]
def open_command
@open_command ||= if GDK::Machine.wsl?
'pwsh.exe -Command Start-Process'
elsif Utils.find_executable('xdg-open')
'xdg-open'
elsif Utils.find_executable('gp')
'gp preview --external'
else
'open'
end
end