A pack of GRUB2 themes for Honkai: Star Rail
Go to file
Wittano Bonarotti 06d1aff7ef
feat(github): added auto-update workflow
chore: renamed workflow
2024-07-11 21:52:19 +02:00
.github/workflows feat(github): added auto-update workflow 2024-07-11 21:52:19 +02:00
assets add jade 2024-07-10 11:54:48 +08:00
preview add jade 2024-07-10 11:54:48 +08:00
themes add jade 2024-07-10 11:54:48 +08:00
.gitignore feat(nix): added nix flake into repository 2024-04-14 12:39:55 +02:00
default.nix chore(nix): clean up 2024-04-15 20:57:07 +02:00
flake.lock feat(github): added auto-update workflow 2024-07-11 21:52:19 +02:00
flake.nix chore(nix): clean up 2024-04-15 20:57:07 +02:00
LICENSE first commit 2023-08-30 08:40:52 +08:00
module.nix feat(nix): added nix flake into repository 2024-04-14 12:39:55 +02:00
README.md add jade 2024-07-10 11:54:48 +08:00
tar.sh v1.2 2023-09-19 11:23:35 +08:00

Honkai: Star Rail Grub Themes

A pack of GRUB2 themes for Honkai: Star Rail

banner

Design File & Image Resources

Honkai: Star Rail Grub Theme Design File (Figma Design File)

StarRailRes (Image Resources)

Theme Description

Access and download the required theme files from the 'themes' folder within this project.The theme files with 'cn' in the filename are intended for the Chinese version. We recommend that Chinese users utilize these versions.

Installation

Using the Guinaifen theme as an example

  1. Download & Unzip

  2. Copy Guinaifen into grub themes directory

sudo cp -r Guinaifen /usr/share/grub/themes
  1. Edit grub file
sudo vim /etc/default/grub
  1. Add the theme to the bottom of the text file
GRUB_THEME="/usr/share/grub/themes/Guinaifen/theme.txt"
  1. Update grub
sudo grub-mkconfig -o /boot/grub/grub.cfg
  1. Reboot the computer

For NixOS users

For NixOS users, it was prepered packages and NixOS module to install theme

With NixOS Module

  1. Added flake into your configuration
inputs.honkai-railway-grub-theme.url = "github:voidlhf/StarRailGrubThemes";
  1. Added honkai-railway-grub-theme as NixOS Module
# your configuration.nix
# ${system} - system architectuer e.g. x86_64-linux
imports = [ home-inputs.honkai-railway-grub-theme.nixosModules.${system}.default ];
  1. Set up theme in your configuration
honkai-railway-grub-theme = {
    enable = true;
    # Remember
    # Theme name should have the same name as in assets/themes directory e.g. Dr.Ratio_cn is correct
    # 'theme' field is optional. Default theme is Acheron.
    theme = "RuanMei"; 
};

Without NixOS module

  1. Added flake into your configuration
inputs.honkai-railway-grub-theme.url = "github:voidlhf/StarRailGrubThemes";
  1. Added GRUB theme
boot.loader.grub = rec {
    # Remember. Each nix package from this repo have another name.
    # Packages name have 2 rules:
    # - lower case names e.g. RuaMei -> ruamei
    # - each '.' must be replaced by "_" e.g Dr.Ratio -> dr_ratio
    theme = inputs.inputs.honkai-railway-grub-theme.packages.${system}.<your_theme_name>-grub-theme;
    splashImage = "${theme}/background.png";
};
  1. Rebuild your system
  2. Reboot computer to see your theme :)

Preview

Jade Firefly Boothill Robin Aventurine Acheron BlackSwan RuanMei Huohuo Luocha

More Preview Images

The labels in the bottom right corner of the preview image will not be displayed in the theme file.