Skip to content

Commit a15fb40

Browse files
committed
add profile.png
1 parent a79a9fd commit a15fb40

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

config/commands.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const commands = {
3434
}
3535
} else if (name == "root") {
3636
const description = whoisRoot;
37-
term.printArt("rootvc-square");
37+
term.printArt("profile");
3838
term.stylePrint(description);
3939
} else if (Object.keys(team).includes(name)) {
4040
const person = team[name];

images/profile.png

122 KB
Loading

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ <h2 style="display: none;">AI researcher, entrepreneur, and developer.</h2>
7373
<script>
7474
var term = new Terminal({
7575
cursorBlink: true,
76-
fontFamily: "monospace",
76+
fontFamily: "Menlo, Monaco, 'Courier New', monospace",
7777
fontSize: 15,
7878
});
7979
const fitAddon = new FitAddon.FitAddon();

js/ascii-art.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function preloadASCIIArt() {
1212
_loadArt(c, 0.5, 1.0, "jpg", false);
1313
}
1414

15-
_loadArt("Epsilon", 1.0, term.cols >= 60 ? 0.5 : 1.0, "png", false);
15+
_loadArt("profile", 1.0, term.cols >= 60 ? 0.5 : 1.0, "png", false);
1616
const people = Object.keys(team);
1717
for (p of people) {
1818
_loadArt(p, 1.0, term.cols >= 60 ? 0.5 : 1.0, "png", true);

0 commit comments

Comments
 (0)