Skip to content

Commit

Permalink
Create rdr2_private_lobby_linux.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ANK1036Official authored Jun 19, 2023
1 parent ed4c88f commit 351b217
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions rdr2_private_lobby_linux.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import os
import signal
import time
import psutil

process_name = 'RDR2.exe'

def get_pid(name):
return [p.info['pid'] for p in psutil.process_iter(['pid', 'name']) if name == p.info['name']]

pids = get_pid(process_name)

if not pids:
print(f"No running process found with name: {process_name}")
else:
for pid in pids:
os.kill(pid, signal.SIGSTOP)

time.sleep(10)

for pid in pids:
os.kill(pid, signal.SIGCONT)

0 comments on commit 351b217

Please sign in to comment.