This file contains hidden or 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 | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title Music-DL | |
# @raycast.mode compact | |
# | |
# Optional parameters: | |
# @raycast.icon 🎵 | |
# @raycast.needsConfirmation false |
This file contains hidden or 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
cat << "EOF" >> ~/.zshrc | |
function kill-app() { | |
IFS=$'\n' | |
red=$(tput setaf 1) | |
normal=$(tput sgr0) | |
if [ -z "$1" ] || [ "$1" = "--help" ]; then | |
printf "%s\n" "Usage: kill-apps string" | |
return 0 | |
fi |