diff --git a/blog/7-create-custom-theme.mdx b/blog/7-create-custom-theme.mdx index 0f73da2..1f63621 100644 --- a/blog/7-create-custom-theme.mdx +++ b/blog/7-create-custom-theme.mdx @@ -47,3 +47,17 @@ you can easily create your themes with the same steps for all WMs ### Finally! ![](/img/tips/CreateCustomTheme/preview.png) + +--- + +# Contributing + +do you want to share your theme? + +- Fork [**`bspwm-themes`**](https://github.com/Exodia-OS/bspwm-themes) Repo +- add your theme to the [**`community`**](https://github.com/Exodia-OS/bspwm-themes/tree/master/community-themes) directory +- Push your changes to a new branch with `dev-${GITHUB-USERNAME}` + - ```bash + ./git-push.sh -t "dev-mmsaeed509" + ``` +- Submit a pull request diff --git a/docs/intro.mdx b/docs/intro.mdx index 9e830a5..173bf4c 100644 --- a/docs/intro.mdx +++ b/docs/intro.mdx @@ -22,6 +22,7 @@ Welcome to Exodia OS wiki # Guides +- [**`Boot to Exodia OS`**](./quickstart/boot.mdx) - [**`Install`**](./quickstart/install.mdx) - [**`Post Install`**](./quickstart/post-install.mdx) - [**`Keybinding ⌨️`**](./keybinding/0-Keybinding.mdx) diff --git a/docs/keybinding/0-Keybinding.mdx b/docs/keybinding/0-Keybinding.mdx index 555c505..aa22228 100644 --- a/docs/keybinding/0-Keybinding.mdx +++ b/docs/keybinding/0-Keybinding.mdx @@ -1,6 +1,7 @@ --- id: Keybinding -title: Keybinding ⌨️ +title: Keybinding ⌨️ +sidebar_position: 1 --- diff --git a/docs/keybinding/1-bspwm.mdx b/docs/keybinding/1-bspwm.mdx index cc35ba7..6ecbd6b 100644 --- a/docs/keybinding/1-bspwm.mdx +++ b/docs/keybinding/1-bspwm.mdx @@ -1,6 +1,7 @@ --- id: bspwm title: bspwm Keybinding +sidebar_position: 2 --- diff --git a/docs/keybinding/2-dwm.mdx b/docs/keybinding/2-dwm.mdx index 52314f7..72c376b 100644 --- a/docs/keybinding/2-dwm.mdx +++ b/docs/keybinding/2-dwm.mdx @@ -1,6 +1,7 @@ --- id: dwm title: dwm Keybinding +sidebar_position: 3 --- diff --git a/docs/keybinding/3-i3wm.mdx b/docs/keybinding/3-i3wm.mdx index f00ac96..015a272 100644 --- a/docs/keybinding/3-i3wm.mdx +++ b/docs/keybinding/3-i3wm.mdx @@ -1,6 +1,7 @@ --- id: i3wm title: i3wm Keybinding +sidebar_position: 4 --- diff --git a/docs/quickstart/boot.mdx b/docs/quickstart/boot.mdx new file mode 100644 index 0000000..ff59f57 --- /dev/null +++ b/docs/quickstart/boot.mdx @@ -0,0 +1,99 @@ +--- +id: boot +title: Boot to Exodia OS +sidebar_position: 1 +--- + + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + + +export const Highlight = ({children, color}) => ( + + {children} + +); + + + +Free Palestine 🇵🇸



+ + + + + + + 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**. + + + + + + + + Download [**`Ventoy`**](https://www.ventoy.net/en/download.html) + + + + + + + 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 + ``` + + + + + + + Download [**`Rufus`**](https://rufus.ie/en) + + + + + + + Download [**`WinSetupFromUSB`**](http://www.winsetupfromusb.com/downloads) + + + + \ No newline at end of file diff --git a/docs/quickstart/install.mdx b/docs/quickstart/install.mdx index 0368868..e8470be 100644 --- a/docs/quickstart/install.mdx +++ b/docs/quickstart/install.mdx @@ -1,7 +1,7 @@ --- id: install title: Install -sidebar_position: 1 +sidebar_position: 2 --- @@ -19,5 +19,5 @@ export const Highlight = ({children, color}) => ( Free Palestine 🇵🇸



-[![install video](/img/install.png)](https://youtu.be/OZ9tsZnObsA) +[![install video](/img/quickstart/install/install.png)](https://youtu.be/OZ9tsZnObsA) diff --git a/docs/quickstart/post-install.mdx b/docs/quickstart/post-install.mdx index c733fe2..bd187a7 100644 --- a/docs/quickstart/post-install.mdx +++ b/docs/quickstart/post-install.mdx @@ -1,6 +1,7 @@ --- id: post-install title: Post Install +sidebar_position: 3 --- @@ -18,7 +19,18 @@ export const Highlight = ({children, color}) => ( Free Palestine 🇵🇸



-> **_NOTE:_** **Use your fav text editor (vi, vim, nano, NvChad, geany, etc... ).** +:::note[**_NOTE:_**] +**Use your fav text editor (`vi`, `vim`, `nano`, `NvChad`, `geany`, etc... ).** +::: + +# Update Your System +Open up The Terminal and update the system +```bash +update +``` + +--- + for `PGP signature` error or `invalid or corrupted package` @@ -39,6 +51,9 @@ Ok, try this yay -Syy archlinux-keyring ``` +--- + +

for Predator v2022.11 Release

diff --git a/static/img/quickstart/boot/BalenaEtche/1.png b/static/img/quickstart/boot/BalenaEtche/1.png new file mode 100644 index 0000000..86b49f7 Binary files /dev/null and b/static/img/quickstart/boot/BalenaEtche/1.png differ diff --git a/static/img/quickstart/boot/Ventoy/1.png b/static/img/quickstart/boot/Ventoy/1.png new file mode 100644 index 0000000..103a92a Binary files /dev/null and b/static/img/quickstart/boot/Ventoy/1.png differ diff --git a/static/img/install.png b/static/img/quickstart/install/install.png similarity index 100% rename from static/img/install.png rename to static/img/quickstart/install/install.png