9 lines
298 B
Bash
Executable File
9 lines
298 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Warning: this script should only be run by the dbus-reload BPM hook. Users should avoid running this script"
|
|
|
|
# Reload system bus configuration
|
|
dbus-send --print-reply --system --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig &> /dev/null
|
|
|
|
exit 0
|