Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kgoettler/ursamajor-rEFInd
Ursa Major theme for rEFInd Bootloader
https://github.com/kgoettler/ursamajor-rEFInd
refind refind-theme
Last synced: 16 days ago
JSON representation
Ursa Major theme for rEFInd Bootloader
- Host: GitHub
- URL: https://github.com/kgoettler/ursamajor-rEFInd
- Owner: kgoettler
- License: gpl-3.0
- Created: 2019-07-23T01:48:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-30T13:24:44.000Z (over 1 year ago)
- Last Synced: 2024-07-31T07:16:53.294Z (4 months ago)
- Topics: refind, refind-theme
- Size: 316 KB
- Stars: 242
- Watchers: 2
- Forks: 18
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![](screenshot.png)
A clean theme for the [rEFInd UEFI Boot Manager](http://www.rodsbooks.com/refind/)
based on the Ursa Major colorscheme.Icons are included for a variety of Linux distributions, as well as macOS and
Windows.## Installation
1. Find the rEFInd directory on your boot volume. For me, it's `/boot/EFI/refind`.
(Note: you will likely need to do this as root)2. Clone this repository to the `themes` directory inside the rEFInd directory.
```bash
cd /boot/EFI/refind
mkdir themes
cd themes
git clone https://github.com/kgoettler/ursamajor-rEFInd.git
```3. Add the following line to the bottom of the `refind.conf` file in the
rEFInd directory```bash
include themes/ursamajor-rEFInd/theme.conf
```## Configuration
By default, rEFInd will create entries for any `.efi` files found in the EFI
directory on your boot volume.You can exclude certain directories containing `.efi` files by passing them
to the `dont_scan_dirs` token of the `refind.conf` file:```bash
# Exclude any .efi files found in /EFI/BOOT and /EFI/old
dont_scan_dirs /EFI/BOOT,/EFI/old
```You can also exclude specific `.efi` files themselves by passing them to the
`dont_scan_files` token of the `refind.conf` file:```bash
# Exclude /EFI/ubuntu/mmx64.efi and any .efi file named shimx64.efi
dont_scan_files /EFI/ubuntu/mmx64.efi,shimx64.efi
```You can also change the icon used for a particular `.efi` file by placing a
`.png` file of the same name in the directory with it:```bash
$ ls /boot/EFI/BOOTBOOTX64.EFI BOOTX64.PNG
```## Additional Information
Additional information about configuring rEFInd may be found [here](http://www.rodsbooks.com/refind/configfile.html).