Merge pull request #460 from baryluk/patch-3

Disable lsof warnings explicitly
pull/429/head
flightlessmango 3 years ago committed by GitHub
commit d183a4589d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -670,11 +670,11 @@ void init_system_info(){
printf("MANGOHUD: lsof is missing, can't check for gamemode and vkbasalt");
} else {
auto pid = getpid();
string command = "lsof -lnPX -L -p " + to_string(pid) + " | grep gamemode";
string command = "lsof -w -lnPX -L -p " + to_string(pid) + " | grep gamemode";
string ret = exec(command);
if (!ret.empty())
HUDElements.gamemode_bol = true;
command = "lsof -lnPX -L -p " + to_string(pid) + " | grep vkbasalt";
command = "lsof -w -lnPX -L -p " + to_string(pid) + " | grep vkbasalt";
ret = exec(command);
if (!ret.empty())
HUDElements.vkbasalt_bol = true;

Loading…
Cancel
Save