forked from pub-solar/os
sway: use swaynotificationcenter from master
branch, fixes scaling issue, see: https://github.com/ErikReider/SwayNotificationCenter/issues/108#issuecomment-1180844131
This commit is contained in:
parent
9a2b2e2b9f
commit
7749667888
|
@ -60,7 +60,7 @@ in
|
||||||
kanshi
|
kanshi
|
||||||
mako
|
mako
|
||||||
slurp
|
slurp
|
||||||
swaynotificationcenter
|
swaynotificationcenter-master
|
||||||
swayidle
|
swayidle
|
||||||
swaylock
|
swaylock
|
||||||
swaybg
|
swaybg
|
||||||
|
|
11
overlays/swaynotificationcenter-remove-post-install.patch
Normal file
11
overlays/swaynotificationcenter-remove-post-install.patch
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
diff --git a/meson.build b/meson.build
|
||||||
|
index 6557624..f82460e 100644
|
||||||
|
--- a/meson.build
|
||||||
|
+++ b/meson.build
|
||||||
|
@@ -126,6 +126,3 @@ if get_option('man-pages')
|
||||||
|
endforeach
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
-
|
||||||
|
-# Run the postinstall script when installing
|
||||||
|
-meson.add_install_script('build-aux/meson/postinstall.py')
|
14
overlays/swaynotificationcenter.nix
Normal file
14
overlays/swaynotificationcenter.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
final: prev: {
|
||||||
|
swaynotificationcenter-master = prev.swaynotificationcenter.overrideAttrs (oldAttrs: {
|
||||||
|
version = "unstable-2022-07-11";
|
||||||
|
src = prev.fetchFromGitHub {
|
||||||
|
owner = "ErikReider";
|
||||||
|
repo = "SwayNotificationCenter";
|
||||||
|
rev = "4f142f54f6af6882338f5ce2e9ac529be523f841";
|
||||||
|
sha256 = "sha256-BF2EZ/0gPtBRAIFvAGhHkp+0H9EA7zYjN8ujDmdHfo0=";
|
||||||
|
};
|
||||||
|
patches = [
|
||||||
|
./swaynotificationcenter-remove-post-install.patch
|
||||||
|
];
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in a new issue