Skip to content

Maho91/osjs-xterm-application

 
 

Repository files navigation

OS.js Logo

OS.js is an open-source desktop implementation for your browser with a fully-fledged window manager, Application APIs, GUI toolkits and filesystem abstraction.

Build Status Support Back Sponsor Donate Donate Community

OS.js v3 Xterm Application

This is the Xterm Application for OS.js v3

Screenshot

Requirements

  • bash
  • ssh

Installation

npm install --save --production @osjs/xterm-application
npm run package:discover

Usage

Start from application menu.

Note that it will log into a shell with the username you are logged in as.

If you want to change this behavior, you can add this to your src/server/config.js file in the OS.js distribution:

{
  xterm: {
    // You can also set this as a string to force a username
    login: false
  }
}

You can also change the connection arguments:

{
  xterm: {
    ssh: {
      // Custom hostname
      hostname: 'localhost',

      // Custom port
      args: '-p 1022'
    }
  }
}

Contribution

Documentation

See the Official Manuals for articles, tutorials and guides.

Links

Packages

No packages published

Languages

  • JavaScript 66.4%
  • CSS 33.6%