We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0699d7f + e8005d0 commit 7161dd7Copy full SHA for 7161dd7
Voice Assistant.py
@@ -448,7 +448,11 @@ def user_mood():
448
elif "snipping tool" in statement:
449
speak("Opening Snipping Tool")
450
os.system("start snippingtool")
451
-
+
452
+ elif "show deleted files" in statement or "Recycle Bin" in statement or "Delete files" in statement or "search deleted files" in statement:
453
+ speak("Opening Recycle Bin")
454
+ os.system("start shell:RecycleBinFolder")
455
456
elif "calculator" in statement:
457
speak("Opening Calculator")
458
os.system("start calc")
@@ -505,3 +509,5 @@ def user_mood():
505
509
statement = takeCommand().lower()
506
510
507
511
time.sleep(3)
512
513
0 commit comments