mirror of
https://github.com/brmlab/brmbar.git
synced 2025-06-07 12:54:05 +02:00
7 lines
169 B
Bash
Executable file
7 lines
169 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case $1 in
|
|
alert) mplayer -really-quiet ~/trombone.wav & ;;
|
|
limit) mplayer -really-quiet ~/much.wav & ;;
|
|
charge) mplayer -really-quiet ~/charge.wav & ;;
|
|
esac
|