-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yshui/picom#1265 After a somewhat recent update, picom with vsync enabled causes slowdown/freezing, and I'm having other nvidia issues (e.g. various issues with mpv failing to open). Because I've disable vsync, screen tearing is very bad by default, so I'm enabling force full composition pipeline now to prevent it.
- Loading branch information
Showing
5 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env bash | ||
# https://wiki.archlinux.org/title/NVIDIA/Troubleshooting#Avoid_screen_tearing | ||
# fixes screen tearing (tested and this works if applied correctly) | ||
|
||
# had to run this with monitor connected then disconnect monitor then reconnect | ||
# just sticking with that because it's easy, otherwise would need to specify | ||
# both displays: | ||
# https://wiki.archlinux.org/title/NVIDIA/Troubleshooting#Multi-monitor | ||
nvidia-settings --assign CurrentMetaMode="nvidia-auto-select +0+0 { ForceFullCompositionPipeline = On }" | ||
|
||
# can validate with: nvidia-settings --query CurrentMetaMode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7d83188
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What nvidia drivers are you using? and which picom are you using?
I was facing the same problem but its fixed now (somehow).
Maybe copying my setup if applicable can help?
Drivers:
nvidia-open-dkms
& I'm using the
picom-git
repo from the AUR.Try this configuration:
7d83188
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it was fixed: yshui/picom#1265