mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-23 22:30:51 +00:00
Including a spotify script and organizing csound
This commit is contained in:
parent
895f356687
commit
51f9c8e282
29
music/spotify
Executable file
29
music/spotify
Executable file
@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
|
||||
while [[ $# -gt 0 ]]
|
||||
do
|
||||
key="$1"
|
||||
|
||||
case $key in
|
||||
-P|--play)
|
||||
qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Play
|
||||
shift
|
||||
;;
|
||||
-p|--pause)
|
||||
qdbus org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Pause
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
echo "Usage:"
|
||||
echo "-P (--play) - Play"
|
||||
echo "-p (--pause) - Pause"
|
||||
exit 3
|
||||
;;
|
||||
esac
|
||||
done
|
||||
if [[ $# -ne $1 ]]; then
|
||||
echo "Usage:"
|
||||
echo "-P (--play) - Play"
|
||||
echo "-p (--pause) - Pause"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user