Compare commits
No commits in common. "f790041042daa7ffd7935e627b605eb14e0219f5" and "7e7791b828f7b44298527be4941eb352830ab30e" have entirely different histories.
f790041042
...
7e7791b828
|
@ -5,5 +5,3 @@ dist
|
||||||
|
|
||||||
*.log
|
*.log
|
||||||
*.tmp
|
*.tmp
|
||||||
|
|
||||||
*cache*
|
|
|
@ -7,7 +7,6 @@
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"assert": "^2.0.0",
|
"assert": "^2.0.0",
|
||||||
"buffer": "^5.5.0",
|
|
||||||
"events": "^3.1.0",
|
"events": "^3.1.0",
|
||||||
"parcel": "^2.8.3",
|
"parcel": "^2.8.3",
|
||||||
"parcel-namer-without-hash": "^0.0.1",
|
"parcel-namer-without-hash": "^0.0.1",
|
||||||
|
|
|
@ -10,7 +10,6 @@ let cmds = {
|
||||||
'export_file': require('./export_file'),
|
'export_file': require('./export_file'),
|
||||||
'import_file': require('./import_file'),
|
'import_file': require('./import_file'),
|
||||||
'zsh': require('./zsh'),
|
'zsh': require('./zsh'),
|
||||||
'ps': require('./ps'),
|
|
||||||
|
|
||||||
// alias l='ls -l'
|
// alias l='ls -l'
|
||||||
'l': (a,t) => {require('./ls')([...a, '-l'], t)},
|
'l': (a,t) => {require('./ls')([...a, '-l'], t)},
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
const { Terminal } = require("xterm");
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param {string[]} argv
|
|
||||||
* @param {Terminal} terminal
|
|
||||||
*/
|
|
||||||
module.exports = (argv, terminal) => {
|
|
||||||
if (argv.indexOf('--help') != -1) {
|
|
||||||
terminal.write(
|
|
||||||
`Usage: ${argv[0]} [OPTIONS]
|
|
||||||
Show current process list`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
terminal.write(
|
|
||||||
`\tPID\tTTY\tTIME\tCMD
|
|
||||||
42\tpts/0\t00:00:00\tzsh
|
|
||||||
43\tpts/0\t00:00:00\tps
|
|
||||||
`);
|
|
||||||
}
|
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<title>resume.js</title>
|
<title>resume.js</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="stylesheet" href="standalone_page.css" />
|
<link rel="stylesheet" href="rootstyle.css" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
../../../public/static/ui/resume.css
|
|
@ -1,13 +0,0 @@
|
||||||
body, html {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#resume_js_app {
|
|
||||||
background: #212121;
|
|
||||||
position: fixed;
|
|
||||||
top:0;left:0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
padding: 16px 10px;
|
|
||||||
}
|
|
Loading…
Reference in New Issue