Enhanced rename functionality to target selection bounds f present; WIP cbindings for memreaper effort

This commit is contained in:
2025-12-27 15:26:43 -06:00
parent 0942af249b
commit 76a4b2e0e2
6 changed files with 103 additions and 30 deletions

View File

@@ -0,0 +1,20 @@
# Python imports
import pkg_resources
import importlib.util
# Lib imports
# Application imports
def __bootstrap__():
__file__ = pkg_resources.resource_filename(__name__, 'gtkmemreaper.cpython-313-x86_64-linux-gnu.so')
spec = importlib.util.spec_from_file_location(
__name__,
__file__
)
mod = importlib.util.module_from_spec(spec)
spec.loader.exec_module(mod)
__bootstrap__()