Skip to content

Commit 86f132b

Browse files
minor
1 parent 0dd0087 commit 86f132b

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

src/assets/help.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
MiaoShell v1.0.0 - Help Guide
23
========================================
34

@@ -33,4 +34,4 @@ TIPS:
3334
• VFS persists in localStorage (512 KB limit)
3435
• Use quotes for spaces: write "my file" "content"
3536

36-
Repository: https://github.com/daniel4-scratch/mioashell
37+
Repository: https://github.com/daniel4-scratch/miaoshell

src/favicon.ico

1.12 KB
Binary file not shown.

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>XTerm Test</title>
6+
<title>Miao Shell</title>
77
<link rel="stylesheet" href="style.css">
88
</head>
99
<body>

src/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ const commands = {
102102
about: (term) => {
103103
term.writeln('\r\n' + colors.bold + 'MiaoShell' + colors.reset + ' - A Useless Terminal');
104104
term.writeln('Version: 1.0.0');
105-
term.writeln('https://github.com/daniel4-scratch/xtermtest');
105+
term.writeln('https://github.com/daniel4-scratch/miaoshell');
106106
},
107107
...vfs.commands, ...jsC.commands
108108
};

src/style.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ body{
66
display: flex;
77
justify-content: center;
88
align-items: center;
9-
background-color: black;
9+
background-color: #181826ff;
1010
}
1111

1212
#terminal {
13+
margin: 1em;
1314
width: 100vw;
1415
height: 100vh;
1516
}

0 commit comments

Comments
 (0)