all repos — dotfiles @ e3bbee81de559c1b4dea7a83d46da3b4e00cc2a8

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