mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
16 lines
509 B
Python
16 lines
509 B
Python
|
#!/usr/bin/python
|
||
|
import os
|
||
|
import shutil
|
||
|
|
||
|
# make sure to have the x11 package xdotool installed on your system
|
||
|
def check_global_executable_exists(executable_name):
|
||
|
return shutil.which(executable_name) is not None
|
||
|
|
||
|
def is_x11_session():
|
||
|
return "DISPLAY" in os.environ and "WAYLAND_DISPLAY" not in os.environ
|
||
|
|
||
|
if is_x11_session() and check_global_executable_exists("xdotool"):
|
||
|
print("Breakpoint hit, releasing mouse!")
|
||
|
os.system("setxkbmap -option grab:break_actions")
|
||
|
os.system("xdotool key XF86Ungrab")
|