blob: 81b5109b8c93f2cc6d6edfc03a599a1c1a3b35c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
services() {
cat <<-EOF
5030 slsksd
9091 transmission
8096 jellyfin
80 ntfy
24961 miniflux
24880 pihole
8384 syncthing
EOF
}
service="$(services | column -t -l 2 | dmenu -c -x)"
[ "$service" ] || exit 1
$BROWSER "http://192.168.178.79:${service%% *}"
|