-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(picom): added picom-allusive to private repo
- Loading branch information
Showing
7 changed files
with
38 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
matrix: | ||
packages: [ | ||
nixos-blur-playmouth, | ||
dexy | ||
picom-allusive | ||
] | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# Packages | ||
Packages are aviable via standard flake packages or [Nix overlays](https://ryantm.github.io/nixpkgs/using/overlays/): | ||
| Name | Nix package name | Description | | ||
|----------------------------------------------------------------|----------------------|--------------------------------| | ||
| [Nixos-Blur](https://git.gurkan.in/gurkan/nixos-blur-plymouth) | nixos-blur-playmouth | A nice theme for bootscreen :) | | ||
| Name | Nix package name | Description | | ||
|------------------------------------------------------------------|----------------------|-----------------------------------------------------------------| | ||
| [Nixos-Blur](https://git.gurkan.in/gurkan/nixos-blur-plymouth) | nixos-blur-playmouth | A nice theme for bootscreen :) | | ||
| [Picom-Allusive](https://github.com/allusive-dev/picom-allusive) | picom-allusive | A fork of picom featuring improved animations and other feature | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ picom, lib, fetchFromGitHub, installShellFiles, pcre2 }: | ||
|
||
picom.overrideAttrs (oldAttrs: rec { | ||
pname = "compfy"; | ||
version = "1.7.2"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "allusive-dev"; | ||
repo = "compfy"; | ||
rev = version; | ||
hash = "sha256-7hvzwLEG5OpJzsrYa2AaIW8X0CPyOnTLxz+rgWteNYY="; | ||
}; | ||
|
||
buildInputs = [ pcre2 ] ++ oldAttrs.buildInputs; | ||
|
||
nativeBuildInputs = [ installShellFiles ] ++ oldAttrs.nativeBuildInputs; | ||
|
||
postInstall = '' | ||
if [ -f "$out/bin/compfy" ]; then | ||
mv "$out/bin/compfy" "$out/bin/picom" | ||
fi | ||
''; | ||
|
||
meta = (builtins.removeAttrs oldAttrs.meta [ "longDescription" ]) // { | ||
description = "A fork of picom featuring improved animations and other features"; | ||
homepage = "https://github.com/allusive-dev/picom-allusive"; | ||
license = with lib.licenses; [ mit mpl20 ]; | ||
maintainers = with lib.maintainers; [ Wittano ]; | ||
}; | ||
}) |
This file was deleted.
Oops, something went wrong.