From 9b48425555b1fd41a706104cc3e147bcc9c6c0c1 Mon Sep 17 00:00:00 2001 From: Guilhem Baccialone Date: Fri, 26 Jun 2026 00:15:30 +0200 Subject: [PATCH 1/3] Change layout --- mango/.config/mango/config.conf | 32 ++++++++++++++++------------- mango/.config/mango/dms/layout.conf | 10 ++++----- 2 files changed, 23 insertions(+), 19 deletions(-) diff --git a/mango/.config/mango/config.conf b/mango/.config/mango/config.conf index a2a1f17..1560588 100644 --- a/mango/.config/mango/config.conf +++ b/mango/.config/mango/config.conf @@ -71,12 +71,15 @@ drag_tile_to_tile = 1 # | Look n Feel | # theming | https://mangowm.github.io/docs/visuals -gappih = 20 -gappiv = 20 -gappoh = 40 -gappov = 40 +gappih=5 +gappiv=5 +gappoh=10 +gappov=10 borderpx = 4 -border_radius = 10 +border_radius = 6 +no_radius_when_single=0 +focused_opacity=1.0 +unfocused_opacity=1.0 scratchpad_width_ratio = 0.8 scratchpad_height_ratio = 0.9 @@ -93,24 +96,25 @@ overlaycolor = 0x14a57cff cursor_theme = capitaine-cursors cursor_size = 24 -blur = 1 -blur_layer = 1 -blur_optimized = 1 +# Window effect +blur=0 +blur_layer=0 +blur_optimized=1 blur_params_num_passes = 2 -blur_params_radius = 4 -blur_params_noise = 0.04 +blur_params_radius = 5 +blur_params_noise = 0.02 blur_params_brightness = 0.9 blur_params_contrast = 0.9 blur_params_saturation = 1.2 shadows = 0 -layer_shadows = 1 -shadow_only_floating = 0 +layer_shadows = 0 +shadow_only_floating = 1 shadows_size = 10 -shadows_blur = 5 +shadows_blur = 15 shadows_position_x = 0 shadows_position_y = 0 -shadowscolor = 0x000000ff +shadowscolor= 0x000000ff animations = 1 layer_animations = 1 diff --git a/mango/.config/mango/dms/layout.conf b/mango/.config/mango/dms/layout.conf index 61ff92e..687849b 100644 --- a/mango/.config/mango/dms/layout.conf +++ b/mango/.config/mango/dms/layout.conf @@ -1,7 +1,7 @@ # Auto-generated by DMS - do not edit manually -border_radius=12 -gappih=28 -gappiv=28 -gappoh=28 -gappov=28 +border_radius=5 +gappih=10 +gappiv=10 +gappoh=10 +gappov=10 borderpx=3 From 1f24fde99350facf5c68ded032f10d9f8a3cc0d2 Mon Sep 17 00:00:00 2001 From: Guilhem Baccialone Date: Sun, 28 Jun 2026 09:12:07 +0200 Subject: [PATCH 2/3] Fix discord boot --- mango/.config/mango/autostart.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mango/.config/mango/autostart.sh b/mango/.config/mango/autostart.sh index 5645ed5..06f81ce 100755 --- a/mango/.config/mango/autostart.sh +++ b/mango/.config/mango/autostart.sh @@ -17,7 +17,7 @@ ssh-agent -a /run/user/1000/ssh-agent.socket >/dev/null 2>&1 & # clipboard content manager wl-paste --type text --watch cliphist store >/dev/null 2>&1 & -discord --start-minimized >/dev/null 2>&1 & +discord --enable-features=UseOzonePlatform --ozone-platform=wayland --start-minimized >/dev/null 2>&1 & # Noctalia # qs -c noctalia-shell & From 7f3a7415de8ce27aec7a7b40ef1481ff91de2185 Mon Sep 17 00:00:00 2001 From: Guilhem Baccialone Date: Tue, 7 Jul 2026 07:45:01 +0200 Subject: [PATCH 3/3] Fix wrong path of some startup utilities --- mango/.config/mango/autostart.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mango/.config/mango/autostart.sh b/mango/.config/mango/autostart.sh index 06f81ce..e937661 100755 --- a/mango/.config/mango/autostart.sh +++ b/mango/.config/mango/autostart.sh @@ -9,10 +9,10 @@ sleep 1 && gentoo-pipewire-launcher restart >/dev/null 2>&1 & ssh-agent -a /run/user/1000/ssh-agent.socket >/dev/null 2>&1 & # password -/usr/lib/polkit-kde-authentication-agent-1 >/dev/null 2>&1 & +/usr/libexec/polkit-kde-authentication-agent-1 >/dev/null 2>&1 & # portal -/usr/lib/xdg-desktop-portal-wlr >/dev/null 2>&1 & +/usr/libexec/xdg-desktop-portal-kde >/dev/null 2>&1 & # clipboard content manager wl-paste --type text --watch cliphist store >/dev/null 2>&1 &