From 74314619c659d152aa6fa139ef51fa356d7f1fdd Mon Sep 17 00:00:00 2001 From: Daniel Ziltener Date: Tue, 12 Mar 2024 14:44:44 +0100 Subject: [PATCH] . --- zilti/packages/hyprland.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/zilti/packages/hyprland.scm b/zilti/packages/hyprland.scm index e1a04e5..e27e802 100644 --- a/zilti/packages/hyprland.scm +++ b/zilti/packages/hyprland.scm @@ -25,6 +25,7 @@ #:use-module (gnu packages linux) #:use-module (gnu packages ninja) #:use-module (gnu packages pciutils) + #:use-module (gnu packages pcre) #:use-module (gnu packages python) #:use-module (gnu packages pkg-config) #:use-module (gnu packages version-control) @@ -36,6 +37,41 @@ #:use-module (gnu packages wm) #:use-module (gnu packages xorg)) +(define-public swayfx + (package + (inherit sway) + (name "swayfx") + (version "0.3.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/WillPower3309/swayfx") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "13d8icd45j937jgkidr7cyjys4nnvxh4ilp7ml0i2ml39ipv01qv")))) + (build-system meson-build-system) + (inputs (list basu + cairo + gdk-pixbuf + json-c + libevdev + libinput-minimal + libxkbcommon + pango + pcre2 + swaybg + wayland + wlroots-0.16)) + (home-page "https://github.com/WillPower3309/swayfx") + (synopsis "Sway Fork with extra options and effects") + (description + "Fork of Sway, a Wayland compositor compatible with i3. SwayFX +adds extra options and effects to the original Sway, such as blur, rounded +corners, shadows, inactive window dimming, etc.") + (license license:expat))) + (define-public tomlplusplus (package (name "tomlplusplus")