Advertisement
Skelebrine

Assistant Terminal

May 19th, 2021
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.32 KB | None | 0 0
  1. @echo off
  2. start /MIN python.exe ./sounds/main/welcome.py
  3. echo Welcome, User!
  4. echo Commands may be typed below. (Type 'help' to see all commands.)
  5. set /p command1=
  6.  
  7. :: Main Commands 1
  8. if %command1% == help echo Commands: note, clock, quit, matrix, sourcecode, youtubeweb, discordweb, spotifyweb && start /MIN python.exe ./sounds/main/help.py
  9. if %command1% == quit exit 0
  10. if %command1% == clock echo Today is: && time /t && start /MIN python.exe ./sounds/main/time.py
  11. if %command1% == note echo Opening Note. && start notecreator.bat && start /MIN python.exe ./sounds/main/note.py
  12.  
  13. :: Other Commands 1 (Applications)
  14. if %command1% == matrix start matrix.bat && start /MIN python.exe ./sounds/apps/matrix.py
  15. if %command1% == sourcecode start chrome https://github.com/Skelebrine/Demise-Assistant && start /MIN python.exe ./sounds/apps/sourcecode.py
  16. if %command1% == youtubeweb start chrome https://www.youtube.com/ && start /MIN python.exe ./sounds/apps/youtubeweb.py
  17. if %command1% == discordweb start chrome https://discord.com/app && start /MIN python.exe ./sounds/apps/discordweb.py
  18. if %command1% == spotifyweb start chrome https://open.spotify.com/ && start /MIN python.exe ./sounds/apps/spotifyweb.py
  19.  
  20. pause
  21. start /MIN python.exe ./sounds/main/anythingelse.py
  22. echo Need anything else?
  23. set /p command2=
  24.  
  25. :: Main Commands 2
  26. if %command2% == help echo Commands: note, clock, quit, matrix, sourcecode, youtubeweb, discordweb, spotifyweb && start /MIN python.exe ./sounds/main/help.py
  27. if %command2% == quit exit 0
  28. if %command2% == clock echo Today is: && time /t && start /MIN python.exe ./sounds/main/time.py
  29. if %command2% == note echo Opening Note. && notecreator.bat && start /MIN python.exe ./sounds/main/note.py
  30.  
  31. :: Other Commands 2 (Applications)
  32. if %command2% == matrix start matrix.bat && start /MIN python.exe ./sounds/apps/matrix.py
  33. if %command2% == sourcecode start chrome https://github.com/Skelebrine/Demise-Assistant && start /MIN python.exe ./sounds/apps/sourcecode.py
  34. if %command2% == youtubeweb start chrome https://www.youtube.com/ && start /MIN python.exe ./sounds/apps/youtubeweb.py
  35. if %command2% == discordweb start chrome https://discord.com/app && start /MIN python.exe ./sounds/apps/discordweb.py
  36. if %command2% == spotifyweb start chrome https://open.spotify.com/ && start /MIN python.exe ./sounds/apps/spotifyweb.py
  37. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement