Skip to content

Instantly share code, notes, and snippets.

@DineshDevaraj
Created June 3, 2019 02:45
Show Gist options
  • Save DineshDevaraj/b9dafbe25faaf4b53472a87c05b086f1 to your computer and use it in GitHub Desktop.
Save DineshDevaraj/b9dafbe25faaf4b53472a87c05b086f1 to your computer and use it in GitHub Desktop.

Revisions

  1. DineshDevaraj created this gist Jun 3, 2019.
    18 changes: 18 additions & 0 deletions intellij-service.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@

    import time
    import pyautogui

    screenWidth, screenHeight = pyautogui.size()

    iconx = 85
    icony = screenHeight - 25
    I = 0

    while True :

    if I > 7 : I = 0

    pyautogui.moveTo(iconx+62*I, icony)
    pyautogui.click()
    time.sleep(3)
    I += 1