mirror of
https://github.com/FliegendeWurst/nur-packages.git
synced 2024-11-24 01:46:28 +00:00
sddm-theme-utah: init at 1.0
This commit is contained in:
parent
7cb0a0c27f
commit
41e943d82a
@ -27,6 +27,7 @@ rec {
|
|||||||
ripgrep-all = pkgs.callPackage ./pkgs/ripgrep-all {
|
ripgrep-all = pkgs.callPackage ./pkgs/ripgrep-all {
|
||||||
inherit (pkgs.darwin.apple_sdk.frameworks) Security;
|
inherit (pkgs.darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
sddm-theme-utah = pkgs.callPackage ./pkgs/sddm-theme-utah { };
|
||||||
thumbs = pkgs.callPackage ./pkgs/thumbs { };
|
thumbs = pkgs.callPackage ./pkgs/thumbs { };
|
||||||
tmux-thumbs = pkgs.callPackage ./pkgs/tmux-thumbs {
|
tmux-thumbs = pkgs.callPackage ./pkgs/tmux-thumbs {
|
||||||
inherit (pkgs.tmuxPlugins) mkTmuxPlugin;
|
inherit (pkgs.tmuxPlugins) mkTmuxPlugin;
|
||||||
|
27
pkgs/sddm-theme-utah/default.nix
Normal file
27
pkgs/sddm-theme-utah/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ lib, stdenv, fetchurl, plasma-workspace }:
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "sddm-theme-utah";
|
||||||
|
version = "1.0";
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
dontUnpack = true;
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/sddm/themes/
|
||||||
|
cp -aR ${plasma-workspace}/share/sddm/themes/breeze $out/share/sddm/themes/sddm-theme-custom
|
||||||
|
chmod +w $out/share/sddm/themes/sddm-theme-custom $out/share/sddm/themes/sddm-theme-custom/theme.conf
|
||||||
|
cp -aR $src $out/share/sddm/themes/sddm-theme-custom/background.png
|
||||||
|
sed -i 's/background=.*/background=background.png/g' $out/share/sddm/themes/sddm-theme-custom/theme.conf
|
||||||
|
'';
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://fliegendewurst.eu/tmp/utah.png";
|
||||||
|
hash = "sha256-eREFKG5Uj991UB6GppZEOgrao1WToq1OtA+rKB5szs8=";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Breeze SDDM theme with Utah desert as background";
|
||||||
|
homepage = "https://old.reddit.com/r/EarthPorn/comments/15egvz1/an_epic_morning_in_the_remote_utah_desert/";
|
||||||
|
license = licenses.unfree;
|
||||||
|
maintainers = with maintainers; [ fliegendewurst ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user