all repos — dotfiles @ 2d5fa70da78d05147a4055c51c983b93a4bc32dd

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