Small tweaks

This commit is contained in:
GitSquared 2017-10-01 01:44:32 +02:00
parent b40cdc06c5
commit 716fe59568
No known key found for this signature in database
GPG Key ID: CD90D37C8F2993E8
3 changed files with 8 additions and 2 deletions

View File

@ -49,7 +49,7 @@ app.on('ready', () => {
alwaysOnTop: true, alwaysOnTop: true,
fullscreen: true, fullscreen: true,
// focusable: false, // focusable: false,
skipTaskbar: true, // skipTaskbar: true,
autoHideMenuBar: true, autoHideMenuBar: true,
frame: true frame: true
}); });

View File

@ -114,6 +114,11 @@ section#main_shell pre {
/* /*
* Determine default colors for xterm.js * Determine default colors for xterm.js
*/ */
.terminal a {
font-weight: bold;
color: inherit;
}
.terminal .xterm-bold { .terminal .xterm-bold {
font-weight: bold; font-weight: bold;
} }

View File

@ -21,7 +21,8 @@ class Terminal {
this.term = new this.xTerm({ this.term = new this.xTerm({
cols: 80, cols: 80,
rows: 24 rows: 24,
cursorBlink: false
}); });
this.term.open(document.getElementById(opts.parentId), true); this.term.open(document.getElementById(opts.parentId), true);