Improved lsof for checking gamemode/vkbasalt

pull/443/head
flightlessmango 4 years ago
parent 214bb83d40
commit 1b44c57db5

@ -659,11 +659,11 @@ void init_system_info(){
} }
// check for gamemode and vkbasalt // check for gamemode and vkbasalt
auto pid = getpid(); auto pid = getpid();
string command = "lsof -p " + to_string(pid) + " | grep gamemode"; string command = "lsof -lnPX -L -p " + to_string(pid) + " | grep gamemode";
string ret = exec(command); string ret = exec(command);
if (!ret.empty()) if (!ret.empty())
HUDElements.gamemode_bol = true; HUDElements.gamemode_bol = true;
command = "lsof -p " + to_string(pid) + " | grep vkbasalt"; command = "lsof -lnPX -L -p " + to_string(pid) + " | grep vkbasalt";
ret = exec(command); ret = exec(command);
if (!ret.empty()) if (!ret.empty())
HUDElements.vkbasalt_bol = true; HUDElements.vkbasalt_bol = true;

Loading…
Cancel
Save