mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
9 lines
273 B
Bash
Executable File
9 lines
273 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Allow you to choose which music source you want to launch
|
|
|
|
chosen=$(printf "%s\\nGoogle Music\\Spotify| dmenu -i -p "Select music provider:") &&
|
|
case "$chosen" in
|
|
"nGoogle Music") google-chrome-stable https://music.google.com ;;
|
|
"Spotify") spotify & ;;
|
|
esac |