https://github.com/vinetos/vinetos-grub2-theme
https://github.com/vinetos/vinetos-grub2-theme
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vinetos/vinetos-grub2-theme
- Owner: Vinetos
- Created: 2021-11-21T10:39:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-21T12:21:00.000Z (over 4 years ago)
- Last Synced: 2025-01-24T02:59:55.733Z (over 1 year ago)
- Size: 1.09 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Vinetos Grub2 Theme
This theme is inspired by [ilham25/dotfiles-openbox](https://github.com/ilham25/dotfiles-openbox/) and based on [sandesh236/sleek--themes](https://github.com/sandesh236/sleek--themes).
# Screenshots :
> TODO
# Installation :
Install it as any other theme or on Nixos :
`/etc/nixos/configuration.nix` :
```nix
let
vinetos-grub2-theme = builtins.fetchTarball {
url = "https://github.com/Vinetos/vinetos-grub2-theme/releases/download/v0.0.1/vinetos-grub2-theme.tar.gz";
};
in
{
boot.loader = {
grub = {
theme = vinetos-grub2-theme;
gfxmodeEfi = "1920x1080"; # You may need to force this setting
};
};
}
```