Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
endormi committed Sep 12, 2019
1 parent e5a0b93 commit 82158a0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions open-essentials/essentials.py
Expand Up @@ -12,8 +12,10 @@
import time

webbrowser.open('chrome')
# webbrowser.open('mozilla')
# webbrowser.open('safari')
"""
webbrowser.open('mozilla')
webbrowser.open('safari')
"""

# Checking cursor position: print(pyautogui.position())
pyautogui.moveTo(414, 51, duration=1)
Expand Down Expand Up @@ -41,7 +43,7 @@

# ** If your computer is not that fast, add more time to (time.sleep) **

time.sleep(2)
time.sleep(1)
pyautogui.hotkey("ctrl", "shift", "n")
time.sleep(2)
time.sleep(1)
pyautogui.hotkey("ctrl", "o")
2 changes: 1 addition & 1 deletion organize-files/organizer.py
Expand Up @@ -49,4 +49,4 @@
time.sleep(2)
print(".")
time.sleep(2)
print("Finished moving files!")
print("Finished organizing files!")
2 changes: 1 addition & 1 deletion repo/priv.py
Expand Up @@ -39,13 +39,13 @@
priv_repo.click()
init = browser.find_element_by_id('repository_auto_init')
init.click()
time.sleep(1)

"""
Additional for marketplace apps:
app = browser.find_element_by_name('quick_install[your_name][number]')
app.click()
"""

time.sleep(1)
create_repo = browser.find_element_by_class_name('first-in-line')
create_repo.click()
2 changes: 1 addition & 1 deletion repo/publ.py
Expand Up @@ -37,13 +37,13 @@
repo_desc.send_keys(desc)
init = browser.find_element_by_id('repository_auto_init')
init.click()
time.sleep(1)

"""
Additional for marketplace apps:
app = browser.find_element_by_name('quick_install[your_name][number]')
app.click()
"""

time.sleep(1)
create_repo = browser.find_element_by_class_name('first-in-line')
create_repo.click()

0 comments on commit 82158a0

Please sign in to comment.