Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sergioribera/s4rchiso-plymouth-theme
Simple and elegants plymouth themes
https://github.com/sergioribera/s4rchiso-plymouth-theme
archlinux nixos plymouth plymouth-theme plymouth-themes
Last synced: 3 months ago
JSON representation
Simple and elegants plymouth themes
- Host: GitHub
- URL: https://github.com/sergioribera/s4rchiso-plymouth-theme
- Owner: SergioRibera
- License: gpl-3.0
- Created: 2021-04-25T04:04:42.000Z (almost 4 years ago)
- Default Branch: nix
- Last Pushed: 2024-06-09T02:30:24.000Z (8 months ago)
- Last Synced: 2024-06-09T03:31:22.435Z (8 months ago)
- Topics: archlinux, nixos, plymouth, plymouth-theme, plymouth-themes
- Language: Shell
- Homepage:
- Size: 818 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NixOS Boot Theme
![image](https://github.com/SergioRibera/s4rchiso-plymouth-theme/assets/56278796/0c6fc706-9131-4a94-bac9-ce4c8a7cd7a1)Animated plymouth theme with NixOs logo and elegant look.
## Install
Configurate plymouth
```nix
{ pkgs, ... }: let
mac-style-src = pkgs.fetchFromGitHub {
owner = "SergioRibera";
repo = "s4rchiso-plymouth-theme";
rev = "bc585b7f42af415fe40bece8192d9828039e6e20";
sha256 = "sha256-yOvZ4F5ERPfnSlI/Scf9UwzvoRwGMqZlrHkBIB3Dm/w=";
};
mac-style-load = pkgs.callPackage mac-style-src {};
in {
boot = {
plymouth = {
enable = true;
theme = "mac-style";
themePackages = [ mac-style-load ];
};
};
}
```## Acknowledgments
* [Based on MacOs style](https://www.gnome-look.org/p/2112595)