summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorharishnkr <hari2menon1234@gmail.com>2024-08-12 02:59:26 +0530
committerharishnkr <hari2menon1234@gmail.com>2024-08-12 02:59:26 +0530
commite1a1b35cb778ebc657977c143980e6c91e58ec4d (patch)
tree7480c12185937f7aad0ed847f7a53df054169223 /.github
parentdce5220cc4bd1481f7a88bcacaffa7bbb355a2ab (diff)
add Fedora instructions, include troubleshooting guidelines
Diffstat (limited to '.github')
-rw-r--r--.github/README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/README.md b/.github/README.md
index 503f782..96e4e03 100644
--- a/.github/README.md
+++ b/.github/README.md
@@ -40,6 +40,17 @@ For Debian based systems:
```
sudo update-grub
```
+
+For Fedora based systems:
+```
+sudo grub2-mkconfig -o /boot/grub2/grub.cfg
+```
+when using BIOS or
+```
+sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg
+```
+when using EFI
+
## Using Package manager
If you use Arch linux or derivatives, use this [package](https://aur.archlinux.org/packages/grub-theme-bsol-git)
@@ -56,6 +67,21 @@ By default, the theme uses `victor mono italic` font. Alternatives are as follow
To change it, change the line containing the terminal font in the `theme.txt` file. To suggest another font, open a new issue.
+## Troubleshooting
+
+Some fixes for issues that may help are as follows. All feedbacks are appreciated
+
+- Make sure this line is commented with a `#` in the beginning:
+ ```
+ GRUB_TERMINAL_OUTPUT="console"
+ ```
+- Change resolution with this line:
+ ```
+ GRUB_GFXMODE="[x_res]x[y_res]x32"
+ ```
+ (change x_res and y_res to your screen resolution, e.g. 1920x1080)
+
+
# Credits