all repos — dotfiles @ 48e0f10b9859d3510e6b458f4c6db7b401fd1b74

personal dotfiles

moc/.local/bin/mocpnotify (view raw)

 1#!/bin/sh
 2
 3case $1 in
 4    "next")
 5        notify-send -a mocp -t 3000 "now playing" "$2 - $3 [$4]"
 6        ;;
 7    "stop")
 8        notify-send -a mocp -t 3000 "mocp" "stopped playing"
 9        ;;
10esac
11