Skip to content

Instantly share code, notes, and snippets.

@duiliogp
Last active February 13, 2023 13:05
Show Gist options
  • Save duiliogp/a7f1b51edda695dcaf08912a14f691b8 to your computer and use it in GitHub Desktop.
Save duiliogp/a7f1b51edda695dcaf08912a14f691b8 to your computer and use it in GitHub Desktop.
PythonScripts

Python Scripts

KDE - Switch to window to the right (Meta+Alt+Right) and reload the page (F5).

import pyautogui as aut

aut.hotkey('ctrl', 's')

with aut.hold('win'):
    with aut.hold('alt'):
        aut.press(['right'])

aut.press('F5')

with aut.hold('win'):
    with aut.hold('alt'):
        aut.press(['left'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment