Gaming netwrok lags (4dots hyprland FIX) #3511
Kharata14
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
hello everyone, I am using hyprland 4dots and I had issues with network while gaming, cs2 was unplayable, so I found out this, something from top bar is trying to scan wifi networks every 15sec, that’s problem, I found that it was geoclue gps problem, hope it will help u guys <3
just turn off "enableGPS" and everything is fixed. also if you guys have mediatek wifi chip that may be also problem so there is another solution:
Disabling WiFi power saving (MediaTek MT7921 / MT7922)
Why: The MT7921 driver is aggressive about power saving, which causes latency spikes, packet loss, and dropped connections. This is a known issue on this chipset.
Check if it's on:
bashiw dev wlan0 get power_saveTemporary (resets on reboot — good for testing):
bashsudo iw dev wlan0 set power_save offPermanent — the correct way. Create a NetworkManager config file:
bashsudo nano /etc/NetworkManager/conf.d/wifi-powersave.confValues: 2 = disabled, 3 = enabled, 0 = use default.
Then:
bashsudo systemctl restart NetworkManagerVerify it stuck:
bashiw dev wlan0 get power_saveShould report off.
Beta Was this translation helpful? Give feedback.
All reactions