This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Replace the output and file name | |
# Assuming you are in the same directory of the file to encrypt | |
zip -er OUTPUTNAME.zip FILENAME.txt | |
# You will be prompted to enter password for decryption |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while true | |
do | |
killall corespeechd | |
echo "running" | |
sleep .3 | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Close Spotify | |
tell application "Spotify" to quit | |
-- Wait for Spotify to close (adjust the delay if needed) | |
delay 2 | |
-- Reopen Spotify | |
tell application "Spotify" to activate | |
-- Hide Spotify |