all repos — dotfiles @ ad09b2c70920cef796cbe6e7c49d5f5a5f5ccbad

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