discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=96495dd00daf5108bad43249bb120fadc101e6d3
commit 96495dd00daf5108bad43249bb120fadc101e6d3 Author: Mike Blumenkrantz <[email protected]> Date: Wed Mar 25 13:09:45 2015 -0400 fix e_remote bg commands --- data/tools/enlightenment_remote | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/data/tools/enlightenment_remote b/data/tools/enlightenment_remote index c9239cd..3f20433 100644 --- a/data/tools/enlightenment_remote +++ b/data/tools/enlightenment_remote @@ -176,23 +176,23 @@ ERGMST(){ } #=== FUNCTION ================================================================ -# NAME: ERCIIIIS -# DESCRIPTION: eremote call with int, int, int, int, string parameter -# PARAMETERS: interface/method call, int, int, int, int, string +# NAME: ERCIIIS +# DESCRIPTION: eremote call with int, int, int, string parameter +# PARAMETERS: interface/method call, int, int, int, string # RETURNS: #=============================================================================== -ERCIIIIS(){ - dbus-send --print-reply=literal --dest=org.enlightenment.wm.service /org/enlightenment/wm/RemoteObject "$1" int32:"$2" int32:"$3" int32:"$4" int32:"$5" string:"$6" +ERCIIIS(){ + dbus-send --print-reply=literal --dest=org.enlightenment.wm.service /org/enlightenment/wm/RemoteObject "$1" int32:"$2" int32:"$3" int32:"$4" string:"$5" } #=== FUNCTION ================================================================ -# NAME: ERCIIII -# DESCRIPTION: eremote call with int, int, int, int parameter -# PARAMETERS: interface/method call, int, int, int, int +# NAME: ERCIII +# DESCRIPTION: eremote call with int, int, int parameter +# PARAMETERS: interface/method call, int, int, int # RETURNS: #=============================================================================== -ERCIIII(){ - dbus-send --print-reply=literal --dest=org.enlightenment.wm.service /org/enlightenment/wm/RemoteObject "$1" int32:"$2" int32:"$3" int32:"$4" int32:"$5" +ERCIII(){ + dbus-send --print-reply=literal --dest=org.enlightenment.wm.service /org/enlightenment/wm/RemoteObject "$1" int32:"$2" int32:"$3" int32:"$4" } #=== FUNCTION ================================================================ @@ -342,14 +342,14 @@ er_desktop_show_by_name(){ # E Desktop background add #------------------------------------------------------------------------------- er_desktop_bg_add(){ - ERCIIIIS org.enlightenment.wm.Desktop.Background.Add "$2" "$3" "$4" "$5" + ERCIIIS org.enlightenment.wm.Desktop.Background.Add "$2" "$3" "$4" "$5" } #------------------------------------------------------------------------------- # E Desktop background del #------------------------------------------------------------------------------- er_desktop_bg_del(){ - ERCIIII org.enlightenment.wm.Desktop.Background.Del "$2" "$3" "$4" + ERCIII org.enlightenment.wm.Desktop.Background.Del "$2" "$3" "$4" } #------------------------------------------------------------------------------- --
