Xfce Wiki

Sub domains
 
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Previous revision
Next revision
thunar:dev:test_dbus_calls [2020/10/03 07:23] – added header and footer nav kevinbowen
Line 1: Line 1:
 +~~NOTOC~~
 +{{ :thunar:dev:thunar.png?nolink|}}
 +====== Thunar - Testing D-Bus calls ======
 + 
 + Here some example dbus calls in order to test thunar dbus functionallity:
  
 +  dbus-send --dest=org.freedesktop.FileManager1 \
 +            --type=method_call \
 +            /org/freedesktop/FileManager1  \
 +            org.freedesktop.FileManager1.ShowFolders   \
 +            array:string:"file:/home/user/myFolder1","file:/home/user/myFolder2"  \
 +            string:"0"
 +
 +  dbus-send --dest=org.freedesktop.FileManager1 \
 +            --type=method_call \
 +            /org/freedesktop/FileManager1  \
 +            org.freedesktop.FileManager1.ShowItems   \
 +            array:string:"file:/home/user/myFile1","file:/home/user/myFile2"  \
 +            string:"0" 
 +
 +  dbus-send --dest=org.freedesktop.FileManager1 \
 +            --type=method_call \
 +            /org/freedesktop/FileManager1  \
 +            org.freedesktop.FileManager1.ShowItemProperties   \
 +            array:string:"file:/home/user/myFile1","file:/home/user/myFile2"  \
 +            string:"0" 
 +            
 +----
 +[[:thunar:dev:|Back to Thunar Dev Notes]]
 +
 +[[https://docs.xfce.org/xfce/thunar/start|Back to Thunar main page]]