Files
arthur-os/install/config/increase-file-watchers.sh
2026-02-21 16:31:29 +01:00

4 lines
246 B
Bash

# Increase inotify file watchers for VS Code, webpack, and other dev tools (default 8192 is too low)
echo "fs.inotify.max_user_watches=524288" | sudo tee /etc/sysctl.d/90-omarchy-file-watchers.conf >/dev/null
sudo sysctl --system >/dev/null 2>&1