From 689adf125fcee89e0057154df097262a91ed73f0 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Mon, 25 May 2026 21:57:33 +0200 Subject: [PATCH] make minimal picom config that just adds vsync --- i3/.config/i3/config | 2 +- i3/.config/picom/picom.conf | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 i3/.config/picom/picom.conf diff --git a/i3/.config/i3/config b/i3/.config/i3/config index fbf767f..69ec348 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -13,7 +13,7 @@ set $just just --justfile ~/.config/i3/justfile new_window 1pixel exec --no-startup-id xset s off -dpms -exec --no-startup-id picom --backend glx --vsync +exec --no-startup-id picom exec --no-startup-id nm-applet exec --no-startup-id blueman-applet exec --no-startup-id $just reset-wallpaper diff --git a/i3/.config/picom/picom.conf b/i3/.config/picom/picom.conf new file mode 100644 index 0000000..37d876b --- /dev/null +++ b/i3/.config/picom/picom.conf @@ -0,0 +1,12 @@ +# Performance +backend = "glx"; +vsync = true; +use-damage = true; + +# Shadows & Corners +shadow = false; +corner-radius = 0; # Set to >0 for subtle rounded corners + +# Fading +fading = false; +shadow = false;