StarRailGrubThemes
A pack of GRUB2 themes for Honkai: Star Rail
Install / Use
/learn @voidlhf/StarRailGrubThemesREADME
Honkai: Star Rail Grub Themes
A pack of GRUB2 themes for Honkai: Star Rail
![]()
Design File & Image Resources
Honkai: Star Rail Grub Theme Design File (Figma Design File)
Theme Description
Please access and download the required theme files from the 'Release' assets of this project. The theme files containing 'cn' in their filenames are intended for the Chinese version.
Installation
Using the Tribbie theme as an example
-
Download & Unzip
-
Copy
Tribbieinto grub themes directory
sudo cp -r Tribbie /usr/share/grub/themes/
- Edit
grubfile
sudo vim /etc/default/grub
- Add the theme to the bottom of the text file
GRUB_THEME="/usr/share/grub/themes/Tribbie/theme.txt"
- Update grub
sudo grub-mkconfig -o /boot/grub/grub.cfg
- Reboot the computer
For NixOS users
For NixOS users, it was prepered packages and NixOS module to install theme
With NixOS Module
- Added flake into your configuration
inputs.honkai-railway-grub-theme.url = "github:voidlhf/StarRailGrubThemes";
- 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 ];
- 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
- Added flake into your configuration
inputs.honkai-railway-grub-theme.url = "github:voidlhf/StarRailGrubThemes";
- 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";
};
- Rebuild your system
- Reboot computer to see your theme :)
Preview

The labels in the bottom right corner of the preview image will not be displayed in the theme file.
Related Skills
node-connect
339.1kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
83.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
339.1kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
83.8kCommit, push, and open a PR
