open_with

On this page
  1. wakterm.open_with(path_or_url [, application])

wakterm.open_with(path_or_url [, application])#

This function opens the specified path_or_url with either the specified application or uses the default application if application was not passed in.

-- Opens a URL in your default browser
wakterm.open_with 'http://example.com'

-- Opens a URL specifically in firefox
wakterm.open_with('http://example.com', 'firefox')
Edit this page