-
Notifications
You must be signed in to change notification settings - Fork 193
faq
You can enable the drag_tile_to_tile option in your config. This allows you to drag a tiled window onto another to swap them.
drag_tile_to_tile=1Blur applies to the transparent areas of windows. To disable it entirely, set blur=0.
If you are experiencing performance issues with blur, make sure blur_optimized=1 (the default). This caches the wallpaper as the blur background, which is much cheaper on the GPU:
blur_optimized=1This is expected behavior when blur_optimized=1 (the default). The optimizer caches the wallpaper to reduce GPU load — windows will blur against the wallpaper rather than the actual content stacked beneath them.
If you want blur to composite against the true background (i.e., show whatever is actually behind the window), set:
blur_optimized=0Warning: Disabling
blur_optimizedsignificantly increases GPU consumption and may cause rendering lag, especially on lower-end hardware.
Try enabling SyncObj timeline support and Adaptive Sync (VRR) if your monitor supports it.
syncobj_enable=1
adaptive_sync=1You can enable Tearing (similar to VSync off).
First, enable it globally:
allow_tearing=1Then force it for your specific game:
windowrule=force_tearing:1,title:Counter-Strike 2Warning: Some graphics cards require setting
WLR_DRM_NO_ATOMIC=1before mango starts for tearing to work. Add it to/etc/environmentand reboot, or launch mango withWLR_DRM_NO_ATOMIC=1 mango. See Monitors — Tearing for details.
The standard spawn command does not support shell pipes directly. You must use spawn_shell instead.
bind=SUPER,P,spawn_shell,echo "hello" | rofi -dmenubind automatically converts keysym to keycode, which is compatible with most layouts but can sometimes be imprecise. If a key combination is not triggering, use the keycode directly instead of the key name.
Run wev and press the key to find its keycode, then use it in your bind:
# Instead of:
bind=ALT,q,killclient
# Use the keycode (e.g., code:24 = q on most layouts):
bind=ALT,code:24,killclientYou can also use binds (the s flag) to match by keysym instead of keycode:
binds=ALT,q,killclient