Skip to content

Commit

Permalink
add Fedora instructions, include troubleshooting guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
harishnkr committed Aug 11, 2024
1 parent dce5220 commit e1a1b35
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand Down

0 comments on commit e1a1b35

Please sign in to comment.