Command to create launcher (behind the Xfce/Thunar GUI)

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
Thunar has an option when right-clicking the desktop to create desktop-files/launchers.


Is there a command behind this GUI that could be used in other contexts?
xfce command thunar launcher
add a comment |Â
up vote
0
down vote
favorite
Thunar has an option when right-clicking the desktop to create desktop-files/launchers.


Is there a command behind this GUI that could be used in other contexts?
xfce command thunar launcher
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Thunar has an option when right-clicking the desktop to create desktop-files/launchers.


Is there a command behind this GUI that could be used in other contexts?
xfce command thunar launcher
Thunar has an option when right-clicking the desktop to create desktop-files/launchers.


Is there a command behind this GUI that could be used in other contexts?
xfce command thunar launcher
edited Nov 29 '17 at 18:10
asked Nov 29 '17 at 15:04
cipricus
2,595850122
2,595850122
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
This is just creating a .desktop file in the ~/Desktop folder.
You can create these files manually with a text editor or using any other program that can write an INI style file.
A .desktop file can be also be installed with the xdg-desktop-icon tool.
Edit
To find the process that has created a window under X.
- Start a terminal
- Run
xwininfoand click in the window you are interested in, note the "Window id" - Run
xprop -id XXXX | grep PIDwhereXXXXis fromxwininfo, note the PID - Run
ps aux | grep XXXXwhereXXXXis the PID fromxprop
On Xfce, the program is:
exo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/Desktop
I know what are and how desktop files work. I am strictly referring to the GUI from my second image. Possibly that is a GUI forxdg-desktop-icon. I want a command that could start that GUI.
â cipricus
Nov 29 '17 at 15:36
1
@cipricus I've edited the answer to explain how to find the command for an X window.
â Silas Parker
Nov 29 '17 at 16:00
That's exactly what I was looking for. Now I can use that command in the file/.local/share/applications/Create new desktop launcher.desktopand create such launchers outside Xfce/Thunar, or I can add it in other file mansagers like Nautilus or PCManFM.
â cipricus
Nov 29 '17 at 17:53
To create an application launcher in/.local/share/applicationsthat can be searched and launched with a tool like Synapse, Dash, Whiskermenu, Krun etc (instead of one one the Desktop), the command isexo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/.local/share/applications.
â cipricus
Nov 29 '17 at 18:07
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
This is just creating a .desktop file in the ~/Desktop folder.
You can create these files manually with a text editor or using any other program that can write an INI style file.
A .desktop file can be also be installed with the xdg-desktop-icon tool.
Edit
To find the process that has created a window under X.
- Start a terminal
- Run
xwininfoand click in the window you are interested in, note the "Window id" - Run
xprop -id XXXX | grep PIDwhereXXXXis fromxwininfo, note the PID - Run
ps aux | grep XXXXwhereXXXXis the PID fromxprop
On Xfce, the program is:
exo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/Desktop
I know what are and how desktop files work. I am strictly referring to the GUI from my second image. Possibly that is a GUI forxdg-desktop-icon. I want a command that could start that GUI.
â cipricus
Nov 29 '17 at 15:36
1
@cipricus I've edited the answer to explain how to find the command for an X window.
â Silas Parker
Nov 29 '17 at 16:00
That's exactly what I was looking for. Now I can use that command in the file/.local/share/applications/Create new desktop launcher.desktopand create such launchers outside Xfce/Thunar, or I can add it in other file mansagers like Nautilus or PCManFM.
â cipricus
Nov 29 '17 at 17:53
To create an application launcher in/.local/share/applicationsthat can be searched and launched with a tool like Synapse, Dash, Whiskermenu, Krun etc (instead of one one the Desktop), the command isexo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/.local/share/applications.
â cipricus
Nov 29 '17 at 18:07
add a comment |Â
up vote
2
down vote
accepted
This is just creating a .desktop file in the ~/Desktop folder.
You can create these files manually with a text editor or using any other program that can write an INI style file.
A .desktop file can be also be installed with the xdg-desktop-icon tool.
Edit
To find the process that has created a window under X.
- Start a terminal
- Run
xwininfoand click in the window you are interested in, note the "Window id" - Run
xprop -id XXXX | grep PIDwhereXXXXis fromxwininfo, note the PID - Run
ps aux | grep XXXXwhereXXXXis the PID fromxprop
On Xfce, the program is:
exo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/Desktop
I know what are and how desktop files work. I am strictly referring to the GUI from my second image. Possibly that is a GUI forxdg-desktop-icon. I want a command that could start that GUI.
â cipricus
Nov 29 '17 at 15:36
1
@cipricus I've edited the answer to explain how to find the command for an X window.
â Silas Parker
Nov 29 '17 at 16:00
That's exactly what I was looking for. Now I can use that command in the file/.local/share/applications/Create new desktop launcher.desktopand create such launchers outside Xfce/Thunar, or I can add it in other file mansagers like Nautilus or PCManFM.
â cipricus
Nov 29 '17 at 17:53
To create an application launcher in/.local/share/applicationsthat can be searched and launched with a tool like Synapse, Dash, Whiskermenu, Krun etc (instead of one one the Desktop), the command isexo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/.local/share/applications.
â cipricus
Nov 29 '17 at 18:07
add a comment |Â
up vote
2
down vote
accepted
up vote
2
down vote
accepted
This is just creating a .desktop file in the ~/Desktop folder.
You can create these files manually with a text editor or using any other program that can write an INI style file.
A .desktop file can be also be installed with the xdg-desktop-icon tool.
Edit
To find the process that has created a window under X.
- Start a terminal
- Run
xwininfoand click in the window you are interested in, note the "Window id" - Run
xprop -id XXXX | grep PIDwhereXXXXis fromxwininfo, note the PID - Run
ps aux | grep XXXXwhereXXXXis the PID fromxprop
On Xfce, the program is:
exo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/Desktop
This is just creating a .desktop file in the ~/Desktop folder.
You can create these files manually with a text editor or using any other program that can write an INI style file.
A .desktop file can be also be installed with the xdg-desktop-icon tool.
Edit
To find the process that has created a window under X.
- Start a terminal
- Run
xwininfoand click in the window you are interested in, note the "Window id" - Run
xprop -id XXXX | grep PIDwhereXXXXis fromxwininfo, note the PID - Run
ps aux | grep XXXXwhereXXXXis the PID fromxprop
On Xfce, the program is:
exo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/Desktop
edited Nov 29 '17 at 15:44
answered Nov 29 '17 at 15:24
Silas Parker
1714
1714
I know what are and how desktop files work. I am strictly referring to the GUI from my second image. Possibly that is a GUI forxdg-desktop-icon. I want a command that could start that GUI.
â cipricus
Nov 29 '17 at 15:36
1
@cipricus I've edited the answer to explain how to find the command for an X window.
â Silas Parker
Nov 29 '17 at 16:00
That's exactly what I was looking for. Now I can use that command in the file/.local/share/applications/Create new desktop launcher.desktopand create such launchers outside Xfce/Thunar, or I can add it in other file mansagers like Nautilus or PCManFM.
â cipricus
Nov 29 '17 at 17:53
To create an application launcher in/.local/share/applicationsthat can be searched and launched with a tool like Synapse, Dash, Whiskermenu, Krun etc (instead of one one the Desktop), the command isexo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/.local/share/applications.
â cipricus
Nov 29 '17 at 18:07
add a comment |Â
I know what are and how desktop files work. I am strictly referring to the GUI from my second image. Possibly that is a GUI forxdg-desktop-icon. I want a command that could start that GUI.
â cipricus
Nov 29 '17 at 15:36
1
@cipricus I've edited the answer to explain how to find the command for an X window.
â Silas Parker
Nov 29 '17 at 16:00
That's exactly what I was looking for. Now I can use that command in the file/.local/share/applications/Create new desktop launcher.desktopand create such launchers outside Xfce/Thunar, or I can add it in other file mansagers like Nautilus or PCManFM.
â cipricus
Nov 29 '17 at 17:53
To create an application launcher in/.local/share/applicationsthat can be searched and launched with a tool like Synapse, Dash, Whiskermenu, Krun etc (instead of one one the Desktop), the command isexo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/.local/share/applications.
â cipricus
Nov 29 '17 at 18:07
I know what are and how desktop files work. I am strictly referring to the GUI from my second image. Possibly that is a GUI for
xdg-desktop-icon. I want a command that could start that GUI.â cipricus
Nov 29 '17 at 15:36
I know what are and how desktop files work. I am strictly referring to the GUI from my second image. Possibly that is a GUI for
xdg-desktop-icon. I want a command that could start that GUI.â cipricus
Nov 29 '17 at 15:36
1
1
@cipricus I've edited the answer to explain how to find the command for an X window.
â Silas Parker
Nov 29 '17 at 16:00
@cipricus I've edited the answer to explain how to find the command for an X window.
â Silas Parker
Nov 29 '17 at 16:00
That's exactly what I was looking for. Now I can use that command in the file
/.local/share/applications/Create new desktop launcher.desktop and create such launchers outside Xfce/Thunar, or I can add it in other file mansagers like Nautilus or PCManFM.â cipricus
Nov 29 '17 at 17:53
That's exactly what I was looking for. Now I can use that command in the file
/.local/share/applications/Create new desktop launcher.desktop and create such launchers outside Xfce/Thunar, or I can add it in other file mansagers like Nautilus or PCManFM.â cipricus
Nov 29 '17 at 17:53
To create an application launcher in
/.local/share/applications that can be searched and launched with a tool like Synapse, Dash, Whiskermenu, Krun etc (instead of one one the Desktop), the command is exo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/.local/share/applications.â cipricus
Nov 29 '17 at 18:07
To create an application launcher in
/.local/share/applications that can be searched and launched with a tool like Synapse, Dash, Whiskermenu, Krun etc (instead of one one the Desktop), the command is exo-desktop-item-edit --display=:0.0 --create-new --type Application file:///home/$USER/.local/share/applications.â cipricus
Nov 29 '17 at 18:07
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f407758%2fcommand-to-create-launcher-behind-the-xfce-thunar-gui%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password