This repository has been archived on 2025-01-31. You can view files and clone it, but cannot push or open issues or pull requests.
home/.bin/mpc/mpc-i3-shuffle

7 lines
245 B
Bash
Executable File

#!/bin/bash
if [[ "$(mpc random)" == *"random: on"* ]]; then
notify-send -a "Mopidy" -u low -t 1 "Shuffle On" "Songs will be played in random order"
else
notify-send -a "Mopidy" -u low -t 1 "Shuffle Off" "Songs will be played sequentially"
fi