<div dir="ltr">Thank you very much. This command works. I have been working on a rofi script like<div><br></div><div>....<br>#!/bin/bash<br><br>select=$( ls | rofi -dmenu -format q -kb-custom-1 "Alt+Return" )<br>status=$?<br><br>if [ $status -eq 0 ]; then<br>    echo you have selected $select<br>elif [ $status -eq 10 ]; then<br>    menu=$(echo -e "Bookmark\nCopy\nCut\nDelete\nOpen\nOpen Folder\nProperties\Rename" | rofi -dmenu)<br>    echo $menu $select<br>else<br>    echo "do nothing"<br>fi<br>....</div><div><br></div><div>I am planning to get the file properties with this command. Can I use path like "/home/ismail/Desktop/file.txt" with your command?</div><div><div><br clear="all"><div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><b style="font-weight:normal"><p dir="ltr" style="line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style="font-size:10pt;font-family:Arial;color:rgb(0,0,0);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap">Thanks and Best Regards,</span></p><p dir="ltr" style="line-height:1.38;margin-top:0pt;margin-bottom:0pt"><span style="font-size:10pt;font-family:Arial;color:rgb(0,0,0);background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre-wrap">Ahmad Ismail</span></p></b></div></div></div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jun 23, 2023 at 3:53 PM Thomas Kluyver <<a href="mailto:thomas@kluyver.me.uk">thomas@kluyver.me.uk</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="msg-1276571864217516947"><u></u><div><div>On Fri, 23 Jun 2023, at 10:14, Ahmad Ismail wrote:<br></div><blockquote type="cite" id="m_-1276571864217516947qt"><div dir="ltr"><div dir="ltr">Suppose I have file like /home/ismail/Desktop/file.txt or, <span style="color:rgb(46,26,5)"><span style="font-family:monospace"><span style="font-size:13.13px">file:///</span></span></span>home/ismail/Desktop/file.txt<br></div><div dir="ltr"><br></div><div>I want to see it's properties using cli.<br></div><div><br></div><div>What command shall I use?<br></div></div></blockquote><div>Something like this will work:<br></div><div><br></div><div>dbus-send --session --print-reply --dest=org.freedesktop.FileManager1 /org/freedesktop/FileManager1 org.freedesktop.FileManager1.ShowItemProperties array:string:"file:///home/ismail/Desktop/file.txt" string:""<br></div><div><br></div><div>But like Lawrence said, it may not do what you want. This asks your file manager to show its 'file properties' window; it doesn't give the information back in the terminal. If you want to show or use the information inside the terminal, you probably don't want to use D-Bus.<br></div><div><br></div><div>Thomas<br></div><div><br></div></div></div></blockquote></div>