-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
�[1;36m==> modified : blog/7-create-custom-theme.mdx �[0m
�[1;36m==> modified : docs/intro.mdx �[0m �[1;36m==> modified : docs/keybinding/0-Keybinding.mdx �[0m �[1;36m==> modified : docs/keybinding/1-bspwm.mdx �[0m �[1;36m==> modified : docs/keybinding/2-dwm.mdx �[0m �[1;36m==> modified : docs/keybinding/3-i3wm.mdx �[0m �[1;36m==> modified : docs/quickstart/install.mdx �[0m �[1;36m==> modified : docs/quickstart/post-install.mdx �[0m �[1;31m==> deleted : static/img/install.png�[0m �[1;32m==> added : static/img/quickstart/ �[0m
- Loading branch information
1 parent
833dea5
commit a30a4bd
Showing
12 changed files
with
137 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
id: Keybinding | ||
title: Keybinding ⌨️ | ||
title: Keybinding ⌨️ | ||
sidebar_position: 1 | ||
--- | ||
|
||
<!-- Badges --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
id: bspwm | ||
title: bspwm Keybinding | ||
sidebar_position: 2 | ||
--- | ||
|
||
<!-- Badges --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
id: dwm | ||
title: dwm Keybinding | ||
sidebar_position: 3 | ||
--- | ||
|
||
<!-- Badges --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
id: i3wm | ||
title: i3wm Keybinding | ||
sidebar_position: 4 | ||
--- | ||
|
||
<!-- Badges --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
--- | ||
id: boot | ||
title: Boot to Exodia OS | ||
sidebar_position: 1 | ||
--- | ||
|
||
<!-- Tabs --> | ||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
|
||
<!-- Badges --> | ||
export const Highlight = ({children, color}) => ( | ||
<span | ||
style={{ | ||
backgroundColor: color, | ||
borderRadius: '25px', | ||
color: '#010D16', | ||
padding: '0.2rem 0.4rem', | ||
}}> | ||
{children} | ||
</span> | ||
); | ||
|
||
<!-- ----- --> | ||
|
||
<Highlight color="#04bdcb">Free Palestine 🇵🇸</Highlight> <br></br><br></br> | ||
|
||
<Tabs> | ||
|
||
<!-- Balena Etcher --> | ||
<TabItem value="balenaEtcher" label="Balena Etcher" default> | ||
|
||
Download [**`Balena Etcher`**](https://etcher.balena.io) | ||
|
||
- Launch Balena Etcher, Press on **Select Image** and select the Exodia OS ISO Image | ||
- Press on **Select target** and Select your USB drive. | ||
- Press on **Flash!** | ||
- it will will create a bootable USB for both **BIOS and UEFI**. | ||
|
||
|
||
</TabItem> | ||
|
||
<!-- Ventoy --> | ||
<TabItem value="ventoy" label="Ventoy"> | ||
|
||
Download [**`Ventoy`**](https://www.ventoy.net/en/download.html) | ||
|
||
</TabItem> | ||
|
||
<!-- dd --> | ||
<TabItem value="dd" label="dd"> | ||
|
||
you can crate a both `BIOS` and `UEFI` **Bootable** `USB` in Linux using `dd` | ||
|
||
- Open up The Terminal and run this command to list all `USB` Devices | ||
- ```bahs | ||
sudo fdisk -l | ||
``` | ||
|
||
- ```bash | ||
Disk /dev/sdc: 28.82 GiB, 30943995904 bytes, 60437492 sectors | ||
Disk model: DataTraveler 3.0 | ||
Units: sectors of 1 * 512 = 512 bytes | ||
Sector size (logical/physical): 512 bytes / 512 bytes | ||
I/O size (minimum/optimal): 512 bytes / 512 bytes | ||
Disklabel type: dos | ||
Disk identifier: 0xdc106f98 | ||
|
||
Device Boot Start End Sectors Size Id Type | ||
/dev/sdc1 * 2048 60371951 60369904 28.8G 7 HPFS/NTFS/exFAT | ||
/dev/sdc2 60371952 60437487 65536 32M ef EFI (FAT-12/16/32) | ||
``` | ||
- then Run the below command to burn the ISO on `USB` with path of `ISO` image and the targeted `USB` | ||
- ```bash | ||
sudo dd bs=4M if=path/to/exodia-os.iso of=/dev/sdX status=progress oflag=sync | ||
``` | ||
- in my case the `USB` is `/dev/sdc` | ||
- and the `ISO` path is loacated at `~/Downloads/iso/exodia-home-2024.02.21-x86_64.iso` | ||
- ```bash | ||
sudo dd bs=4M if=~/Downloads/iso/exodia-home-2024.02.21-x86_64.iso of=/dev/sdc status=progress oflag=sync | ||
``` | ||
|
||
</TabItem> | ||
|
||
<!-- Rufus --> | ||
<TabItem value="rufus" label="Rufus"> | ||
|
||
Download [**`Rufus`**](https://rufus.ie/en) | ||
|
||
</TabItem> | ||
|
||
<!-- WinSetupFromUSB --> | ||
<TabItem value="winsetupfromusb" label="WinSetupFromUSB"> | ||
|
||
Download [**`WinSetupFromUSB`**](http://www.winsetupfromusb.com/downloads) | ||
|
||
</TabItem> | ||
|
||
</Tabs> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes