forked from colonelpanic/dotfiles
13 lines
257 B
Bash
Executable File
13 lines
257 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
function dbus-introspect {
|
|
dbus-send --session \
|
|
--dest=$1 \
|
|
--type=method_call \
|
|
--print-reply \
|
|
$2 \
|
|
org.freedesktop.DBus.Introspectable.Introspect | tail -n +2 | sed -e "s/^ *string//"
|
|
}
|
|
|
|
dbus-introspect "$@"
|