Skip to content

Commit

Permalink
�[1;36m==> modified : blog/7-create-custom-theme.mdx �[0m
Browse files Browse the repository at this point in the history
    �[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
mmsaeed509 committed Apr 10, 2024
1 parent 833dea5 commit a30a4bd
Show file tree
Hide file tree
Showing 12 changed files with 137 additions and 4 deletions.
14 changes: 14 additions & 0 deletions blog/7-create-custom-theme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions docs/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
3 changes: 2 additions & 1 deletion docs/keybinding/0-Keybinding.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
id: Keybinding
title: Keybinding ⌨️
title: Keybinding ⌨️
sidebar_position: 1
---

<!-- Badges -->
Expand Down
1 change: 1 addition & 0 deletions docs/keybinding/1-bspwm.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
id: bspwm
title: bspwm Keybinding
sidebar_position: 2
---

<!-- Badges -->
Expand Down
1 change: 1 addition & 0 deletions docs/keybinding/2-dwm.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
id: dwm
title: dwm Keybinding
sidebar_position: 3
---

<!-- Badges -->
Expand Down
1 change: 1 addition & 0 deletions docs/keybinding/3-i3wm.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
id: i3wm
title: i3wm Keybinding
sidebar_position: 4
---

<!-- Badges -->
Expand Down
99 changes: 99 additions & 0 deletions docs/quickstart/boot.mdx
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>
4 changes: 2 additions & 2 deletions docs/quickstart/install.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
id: install
title: Install
sidebar_position: 1
sidebar_position: 2
---

<!-- Badges -->
Expand All @@ -19,5 +19,5 @@ export const Highlight = ({children, color}) => (

<Highlight color="#04bdcb">Free Palestine 🇵🇸</Highlight> <br></br><br></br>

[![install video](/img/install.png)](https://youtu.be/OZ9tsZnObsA)
[![install video](/img/quickstart/install/install.png)](https://youtu.be/OZ9tsZnObsA)

17 changes: 16 additions & 1 deletion docs/quickstart/post-install.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
id: post-install
title: Post Install
sidebar_position: 3
---

<!-- Badges -->
Expand All @@ -18,7 +19,18 @@ export const Highlight = ({children, color}) => (

<Highlight color="#04bdcb">Free Palestine 🇵🇸</Highlight> <br></br><br></br>

> **_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`

Expand All @@ -39,6 +51,9 @@ Ok, try this
yay -Syy archlinux-keyring
```

---


<details>
<summary><h3> for Predator <code>v2022.11</code> Release</h3></summary>

Expand Down
Binary file added static/img/quickstart/boot/BalenaEtche/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/quickstart/boot/Ventoy/1.png
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

0 comments on commit a30a4bd

Please sign in to comment.