Enhanced rename functionality to target selection bounds f present; WIP cbindings for memreaper effort
This commit is contained in:
20
src/solarfm/utils/cbindings/gtkmemreaper.py
Normal file
20
src/solarfm/utils/cbindings/gtkmemreaper.py
Normal 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__()
|
||||
Reference in New Issue
Block a user