add Catppuccin color schemes for Konsole
This commit is contained in:
parent
9dad989f76
commit
79974b69a5
3 changed files with 56 additions and 23 deletions
21
packages/catppuccin-konsole.nix
Normal file
21
packages/catppuccin-konsole.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
pkgs.stdenv.mkDerivation {
|
||||
name = "catppuccin-konsole";
|
||||
version = "1.0.0";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "catppuccin";
|
||||
repo = "konsole";
|
||||
rev = "3b64040e3f4ae5afb2347e7be8a38bc3cd8c73a8";
|
||||
sha256 = "sha256-d5+ygDrNl2qBxZ5Cn4U7d836+ZHz77m6/yxTIANd9BU";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm644 themes/*.colorscheme -t $out/themes
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue