Revert "chore: remove manual catppuccin in favor of system wide configuration"
This reverts commit 1161933237
.
This commit is contained in:
parent
2838e06f07
commit
205119107f
16 changed files with 142 additions and 61 deletions
BIN
theming/sddm/Background.jpg
Normal file
BIN
theming/sddm/Background.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 MiB |
21
theming/sddm/default.nix
Normal file
21
theming/sddm/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ pkgs }:
|
||||
|
||||
let
|
||||
image = ./Background.jpg;
|
||||
in
|
||||
pkgs.stdenv.mkDerivation {
|
||||
name = "sddm-theme";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "MarianArlt";
|
||||
repo = "sddm-sugar-dark";
|
||||
rev = "ceb2c455663429be03ba62d9f898c571650ef7fe";
|
||||
sha256 = "0153z1kylbhc9d12nxy9vpn0spxgrhgy36wy37pk6ysq7akaqlvy";
|
||||
};
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
cp -R ./* $out/
|
||||
cd $out/
|
||||
rm Background.jpg
|
||||
cp -r ${image} $out/Background.jpg
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue