mirror of
https://github.com/brmlab/brmbar.git
synced 2025-06-07 21:04:00 +02:00
6 lines
94 B
Bash
6 lines
94 B
Bash
#!/bin/sh
|
|
if [ "$1" = "alert" ]; then
|
|
mplayer ~/trombone.wav &
|
|
else
|
|
mplayer ~/much.wav &
|
|
fi
|