Skip to content

Commit

Permalink
nixos/plymouth: add support for logo in catppuccin (two-step) theme (N…
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Dec 10, 2024
2 parents 66676a8 + 39eaf6e commit 9ad61cf
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions nixos/modules/system/boot/plymouth.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ let
# See: https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/106
mkdir -p $out/share/plymouth/themes/spinfinity
ln -s $logo $out/share/plymouth/themes/spinfinity/header-image.png
# Logo for catppuccin (two-step) theme
for flavour in mocha macchiato latte frappe
do
mkdir -p $out/share/plymouth/themes/catppuccin-"$flavour"
ln -s $logo $out/share/plymouth/themes/catppuccin-"$flavour"/header-image.png
done
'';

themesEnv = pkgs.buildEnv {
Expand Down

0 comments on commit 9ad61cf

Please sign in to comment.