mirror of
https://github.com/italicsjenga/dotfiles.git
synced 2024-11-24 01:51:32 +11:00
20 lines
362 B
Bash
Executable file
20 lines
362 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case $1 in
|
|
"play")
|
|
key="XF86AudioPlay"
|
|
;;
|
|
"next")
|
|
key="XF86AudioNext"
|
|
;;
|
|
"prev")
|
|
key="XF86AudioPrev"
|
|
;;
|
|
*)
|
|
echo "Usage: $0 play|next|prev"
|
|
exit 1
|
|
;;
|
|
esac
|
|
xdotool key --window $(xdotool search --name "Spotify (Premium |Unlimited |Free )?- Linux Preview"|head -n1) $key
|
|
exit 0
|