all repos — dotfiles @ c979d551243f20ef96ef515f6e8fbd3b490e0568

personal dotfiles

.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