blob: f8f68b9e605c478730746532df678eb0e7a310a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
#!/bin/sh
# dir where audio files are stored
amb_dir="$HOME/.local/share/damb"
pid_file="/tmp/damb.pid"
config_dir="$HOME/.config/damb"
menu="wmenu"
die()
{
: "${1:?}"
command -v notify-send > /dev/null &&
notify-send " damb" "$1"
printf "\033[31;1merr: %b\033[0m\n" "$1"
exit "${2:-1}"
}
dep_check()
{
: "${1:?}"
for dep; do
command -v "$dep" 1>/dev/null ||
die "$dep not found, please install it" 127
done
unset dep
}
get_opt()
{
printf "select\nlinks\nrandom\nstream\nstop" | "$menu" -p "הּ "
}
get_ambs()
{
find "$amb_dir" -type f -exec basename {} \;
}
get_link()
{
grep -v "^#.*$" "$config_dir"/links |
grep "$(grep -v "^#.*$" "$config_dir"/links | cut -d '=' -f1 | "$menu" -p " " -l 25)" |
cut -d '=' -f2 | tr -d ' '
}
main()
{
[ -z "$WAYLAND_DISPLAY" ] &&
menu="dmenu"
dep_check "$menu"
case "$(get_opt)" in
select)
dep_check "ffplay"
ffplay -volume 20 -nodisp -loop 0 "$amb_dir/$(get_ambs | "$menu" -p " " -l 25)" &
echo "$!" >> "$pid_file"
;;
links)
dep_check "mpv"
mpv --no-video --no-resume-playback "$(get_link)" &
echo "$!" >> "$pid_file"
;;
random)
dep_check "ffplay"
ffplay -volume 20 -nodisp -loop 0 "$amb_dir/$(get_ambs | shuf -n1)" &
echo "$!" >> "$pid_file"
;;
stop)
while read -r process
do
kill -2 "$process"
done < "$pid_file"
rm "$pid_file"
;;
stream)
paste=
dep_check "mpv"
if [ -z "$DISPLAY" ]
then
dep_check "wl-paste"
paste="$(wl-paste)"
else
dep_check "xclip"
paste="$(xclip -o -sel clip)"
fi
mpv --no-video "$paste" &
echo "$!" >> "$pid_file"
;;
"")
;; # stay quiet when user quits the program during selection
*)
die "option not implemented";;
esac
}
main "$@"
|