From 245d410f48d17bc1d7d5bfdb34252d92aff858d2 Mon Sep 17 00:00:00 2001 From: omri Date: Sat, 2 Nov 2024 19:26:20 +0200 Subject: [PATCH] meta: add file --- .config/mequidots/notes.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .config/mequidots/notes.md diff --git a/.config/mequidots/notes.md b/.config/mequidots/notes.md new file mode 100644 index 0000000..5328360 --- /dev/null +++ b/.config/mequidots/notes.md @@ -0,0 +1,7 @@ +some notes for when reinstalling this setup: + +# Xorg client limit +Xorg has a weird limit on the amount of clients, and every yabridge plugin is a new X client. The limit is 256, which can be easily be achieved. To change the limit to the maximum: +```bash +printf 'Section "ServerFlags"\n\tOption "MaxClients" "2048"\nEndSection\n' > /etc/X11/xorg.conf.d/99-maxclients.conf +```