diff options
author | Jochen Keil <jochen.keil@gmail.com> | 2012-08-22 17:29:37 +0200 |
---|---|---|
committer | Jochen Keil <jochen.keil@gmail.com> | 2012-08-22 17:29:37 +0200 |
commit | d52278f48d98f116d3a1ebd21000bf80d90b8c9d (patch) | |
tree | 0496a95d3dadc2adb6371894aa6c9e36b2d05831 /readme.md | |
parent | fb22226dbca8a167d1458766ebfc949ab5c1a1ef (diff) | |
download | xmobar-d52278f48d98f116d3a1ebd21000bf80d90b8c9d.tar.gz xmobar-d52278f48d98f116d3a1ebd21000bf80d90b8c9d.tar.bz2 |
Allow multiple signals over dbus at once
It's easy to implement, since arguments to dbus method calls are handed
over as list anyway. It also removes the need for safeHead.
Bottom line: extra functionality without extra cost.
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -339,6 +339,11 @@ An example using the `dbus-send` command line utility: org.Xmobar.Control.SendSignal \ "string:Toggle" +It is also possible to send multiple signals at once: + # send to another screen, reveal and toggle the persistent flag + dbus-send [..] \ + "string:ChangeScreen" "string:Reveal" "string:TogglePersistent" + ## The Output Template |