diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-05-10 17:10:59 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-05-10 17:10:59 +0200 |
commit | e3225bc62835c6accc18787c6038fc1dce2484fc (patch) | |
tree | 56c22deacd2a1101ad82ecc80ad300896e6c872f /extra | |
parent | 811a14481dbd75fe2c2a072517e06add336fee4f (diff) |
Move dbus code to a separate process to allow gpu-screen-recorder to use cap_sys_nice for better recording performance on amd
Diffstat (limited to 'extra')
-rwxr-xr-x | extra/meson_post_install.sh | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/extra/meson_post_install.sh b/extra/meson_post_install.sh index 7bf0d96..8a01b18 100755 --- a/extra/meson_post_install.sh +++ b/extra/meson_post_install.sh @@ -4,14 +4,7 @@ /usr/sbin/setcap cap_sys_admin+ep ${MESON_INSTALL_DESTDIR_PREFIX}/bin/gsr-kms-server \ || echo "\n!!! Please re-run install as root\n" -# Cant do this because it breaks desktop portal (create session)!!!. -# For some reason the desktop portal tries to access /proc/gpu-screen-recorder-pid/root from the portal process -# which doesn't work because for some reason CAP_SYS_NICE on a program makes /proc/self/root not readable by other processes. -# The reason portal reads that file might be because portal seems to have a security feature where its able to identify the -# process and if the session token is stolen by another application then it will ignore the session token as it wasn't that -# application that created the session token. -# --- # This is needed (for EGL_CONTEXT_PRIORITY_HIGH_IMG) to allow gpu screen recorder to run faster than the heaviest application on AMD. # For example when trying to record a game at 60 fps and the game drops to 45 fps in some place that would also make gpu screen recorder -# drop to 45 fps unless this setcap is used. -#/usr/sbin/setcap cap_sys_nice+ep ${MESON_INSTALL_DESTDIR_PREFIX}/bin/gpu-screen-recorder +# drop to 45 fps unless this setcap is used. Recording would also drop to below 60 fps in some games even though they run above 60 fps. +/usr/sbin/setcap cap_sys_nice+ep ${MESON_INSTALL_DESTDIR_PREFIX}/bin/gpu-screen-recorder |