From 46e994a7403c8b70f115380b45a1c4207d933935 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sun, 11 Feb 2024 13:58:56 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20ux(swaync):=20disable=20blur=20o?= =?UTF-8?q?n=20mpris=20module=20and=20add=20border=20radius=20to=20the=20i?= =?UTF-8?q?mage=20of=20the=20notif.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/swaync/config.json | 3 ++- .config/swaync/style.css | 15 +++++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.config/swaync/config.json b/.config/swaync/config.json index 68027d0e..4b400714 100644 --- a/.config/swaync/config.json +++ b/.config/swaync/config.json @@ -39,7 +39,8 @@ }, "mpris": { "image-size": 96, - "image-radius": 12 + "image-radius": 12, + "blur": false }, "buttons-grid": { "actions": [ diff --git a/.config/swaync/style.css b/.config/swaync/style.css index 1aafda6e..696b2dd9 100644 --- a/.config/swaync/style.css +++ b/.config/swaync/style.css @@ -19,6 +19,7 @@ background: linear-gradient(to right, #363a4f, rgba(183, 189, 248, 0.3)); padding: 10px; + margin-top: 10px; border-radius: 10px; } @@ -362,6 +363,16 @@ color: #cad3f5; } -.control-center .widget-mpris { - margin-top: 10px; +.notification-row + .notification-background + .notification + .notification-default-action + .notification-content + .image { + /* Notification Primary Image */ + -gtk-icon-effect: none; + border-radius: 10px; + /* Size in px */ + margin: 4px; + margin-right: 20px; }