Skip to content

Commit

Permalink
-Added chromekiller if chrome.exe is still running after exit.
Browse files Browse the repository at this point in the history
  • Loading branch information
onemanbuilds committed Nov 4, 2020
1 parent 72c0c36 commit 98db7e0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,4 @@ SpotifyFollowBot/combos.txt
SpotifyFollowBot/proxies.txt
SpotifyFollowBot/SpotifyFollowBot.exe
SpotifyFollowBot/useragents.txt
SpotifyFollowBot/ChromeKiller.exe
17 changes: 17 additions & 0 deletions close_chrome.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from os import system,name

def SetTitle(title_name:str):
system("title {0}".format(title_name))

def clear():
if name == 'posix':
system('clear')
elif name in ('ce', 'nt', 'dos'):
system('cls')
else:
print("\n") * 120

SetTitle('One Man Builds Chrome Killer')
clear()
system('color 2 & taskkill /F /IM chrome.exe /T')
system('pause > nul')

0 comments on commit 98db7e0

Please sign in to comment.