mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
28 lines
687 B
Python
28 lines
687 B
Python
|
import subprocess
|
||
|
from os.path import join
|
||
|
from plyer.facades import Screenshot
|
||
|
from plyer.utils import whereis_exe
|
||
|
from plyer.platforms.macosx.storagepath import OSXStoragePath
|
||
|
|
||
|
|
||
|
class OSXScreenshot(Screenshot):
|
||
|
def __init__(self, file_path=None):
|
||
|
default_path = join(
|
||
|
OSXStoragePath().get_pictures_dir().replace('file://', ''),
|
||
|
'screenshot.png'
|
||
|
)
|
||
|
super().__init__(file_path or default_path)
|
||
|
|
||
|
def _capture(self):
|
||
|
subprocess.call([
|
||
|
'screencapture',
|
||
|
self.file_path
|
||
|
])
|
||
|
|
||
|
|
||
|
def instance():
|
||
|
if whereis_exe('screencapture'):
|
||
|
return OSXScreenshot()
|
||
|
else:
|
||
|
return Screenshot()
|