Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@meese-os/terminal) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
MeeseOS Xterm Application
This is the Xterm Application for MeeseOS

Requirements
bashssh
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 MeeseOS distribution:
module.exports = {
// ... append this to your export ...
xterm: {
// You can also set this as a string to force a username
login: false,
},
};You can also change the connection arguments:
module.exports = {
// ... append this to your export ...
xterm: {
ssh: {
// Custom hostname
hostname: "localhost",
// Custom port
args: "-p 1022",
},
},
};