From 2bb773b0a93ebb571e258d804144631d51d60a94 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Sun, 2 Jul 2023 18:37:53 +0200 Subject: Updated 3 files (automated) --- core/about/index.html | 4 ++-- docs/Installing-mangoOS-on-bare-metal.md | 2 ++ setup.sh | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/core/about/index.html b/core/about/index.html index 3b9231e..a6d9912 100644 --- a/core/about/index.html +++ b/core/about/index.html @@ -113,9 +113,9 @@ try { let gpu = (await si.graphics())['controllers'][0]; if (gpu.vramDynamic) { - document.getElementById("about-gpu").innerText = gpu['model']; + document.getElementById("about-gpu").innerText = (gpu['model'].length < 25 ? gpu['model'] : gpu['vendor']); } else { - document.getElementById("about-gpu").innerText = gpu['model'] + " " + formatSize(gpu.vram * 1024**2); + document.getElementById("about-gpu").innerText = (gpu['model'].length < 25 ? gpu['model'] : gpu['vendor']) + " " + formatSize(gpu.vram * 1024**2); } } catch (e) { document.getElementById("about-gpu").innerText = "-"; diff --git a/docs/Installing-mangoOS-on-bare-metal.md b/docs/Installing-mangoOS-on-bare-metal.md index 61c4c22..8b0ca9f 100644 --- a/docs/Installing-mangoOS-on-bare-metal.md +++ b/docs/Installing-mangoOS-on-bare-metal.md @@ -57,8 +57,10 @@ You now need to follow these instructions to install mangoOS: * Run `/sbin/reboot` to restart the system * If the screen turns orange shortly after starting up, you have reached the first state of the mangoOS startup process * The screen may flicker a few times during the rest of the boot process + * If you want technical details, the screen will flicker between each state of the boot process. Stage 1 is when the orange screen appears, stage 2 is when the screen resolution is set properly, and stage 3 is when the GUI is loaded * Once the "Welcome to mangoOS" message appears, your system is installed properly * After the boot process has completed, click on the "Owner" user and login using the "password" password +* Once you are logged in, you can click on the mangoOS logo in the top left corner and click on the "About" icon to check your system information ## Wrapping up blah blah \ No newline at end of file diff --git a/setup.sh b/setup.sh index f46740a..9ef61c7 100644 --- a/setup.sh +++ b/setup.sh @@ -1,6 +1,6 @@ #!/bin/bash cd /mango -apt install -y network-manager xserver-xorg x11-xserver-utils xinit libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libgtk-3-0 libasound2 fonts-inter ecryptfs-utils nodejs xxd pulseaudio alsa-utils openbox fonts-roboto +apt install -y network-manager xserver-xorg x11-xserver-utils xinit libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libgtk-3-0 libasound2 fonts-inter ecryptfs-utils nodejs xxd pulseaudio alsa-utils openbox fonts-roboto xterm apt autoremove -y chmod -R +x * cp ./setup/modm\@.service /etc/systemd/system/modm\@.service -- cgit