Skip to content

Commit 93df280

Browse files
Update README.md
1 parent 62f17f8 commit 93df280

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

sneaker-monitors/__main__.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import six
33
import os
44
import subprocess
5-
import signal
65
import ctypes
76
import traceback
87
try:
@@ -77,8 +76,7 @@ def run_monitor(path):
7776

7877
def run_screen():
7978
clear()
80-
log('Select the monitor(s) you want to run. To run multiple, list them with spaces (Example: 1 5 6 7), but note the risks related to running multiple monitors here: ', colour='green')
81-
log('r', colour='blue') # URL
79+
log('Select the monitor(s) you want to run. To run multiple, list them with spaces (Example: 1 5 6 7), but note that running too many monitors at once may harm your computer. It is suggested a maximum of 4 monitors to be used at one time, but different systems may be able to handle more or less.', colour='green')
8280
for i, m in enumerate(__monitors__):
8381
log(f' [{i}] {m}', colour='blue')
8482
log(f' [{i+1}] Back', colour='blue')
@@ -170,17 +168,18 @@ def main():
170168
clear()
171169
log(' ***** HELP *****\n', colour='green')
172170
log('You can follow along to YouTube tutorials at:', colour='blue')
173-
log('\n',colour='green')
171+
log('https://www.youtube.com/c/yascode\n',colour='green')
174172
log('You can find documentation at the following link:', colour='blue')
175-
log('\n', colour='green') # Link to documentation
173+
log('https://yasserqureshi1.github.io/Sneaker-Monitors/\n', colour='green') # Link to documentation
176174
log('You can join the Discord server for more help here:', colour='blue')
177-
log('\n', colour='green') # Link to discord server
175+
log('https://discord.gg/kWmAqpUtrf\n', colour='green') # Link to discord server
178176
log('\n\nPress any button to go back.', colour='yellow')
179177
if type(input()) == type(""):
180178
main()
181179

182180
elif option == '4':
183-
os.kill(os.getppid(), signal.SIGHUP)
181+
clear()
182+
exit()
184183

185184
else:
186185
log('Invalid option. Please try again in...', colour='red')

0 commit comments

Comments
 (0)