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