We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
functionality should be moved out of homescreen as it is shell specific, otherwise the intent causes conflicts with other setups
def initialize(self): self.bus.on("ovos.display.screenshot.get.response", self.screenshot_taken) def take_screenshot(self, message): # TODO define some bus event folder_path = self.settings.get("screenshot_folder", "") if not folder_path: folder_path = os.path.expanduser('~') + "/Pictures" if not os.path.exists(folder_path): try: os.makedirs(folder_path, exist_ok=True) except OSError as e: LOG.error("Could not create screenshot folder: " + str(e)) folder_path = tempfile.gettempdir() self.bus.emit(Message("ovos.display.screenshot.get", {"folderpath": folder_path})) def screenshot_taken(self, message): result = message.data.get("result") display_message = f"Screenshot saved to {result}" self.gui.show_notification(display_message)
a screenshot skill should be made to emit this event (default?), or to run a dedicated bash command instead
The text was updated successfully, but these errors were encountered:
fix!: remove screenshot intent
9d6f01c
OpenVoiceOS/ovos-gui-plugin-shell-companion#48
fix!: remove screenshot intent (#138)
1d1e5fc
JarbasAl
No branches or pull requests
functionality should be moved out of homescreen as it is shell specific, otherwise the intent causes conflicts with other setups
a screenshot skill should be made to emit this event (default?), or to run a dedicated bash command instead
The text was updated successfully, but these errors were encountered: