6 lines
137 B
Bash
Executable file
6 lines
137 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Trigger Applescript when on macOS
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
~/git/dotfiles/spotify.applescript
|
|
fi
|