.desktop launcher of $VISUAL failing
I have built a little launcher editor in a desktop file called "createlauncher.desktop" that opens up a second, read-only desktop launcher file called "SHORTCUT.desktop" in a text editor where a PATH to a file executable and a NAME are filled in and the launcher is saved to a new location. It mostly uses xdg-open and the main target is pdf files or else directories. the xdg-open part is working fine. This is so that I can have windows-style shortcuts (the desktop files) that Dropbox doesn't foul up like it does symbolic links.
I can use the launcher if I specify the full path to the read-only desktop file, but I have to invoke a specific text editor on an absolute path for it to work. I want it to look for the read-only .desktop file in the same directory, wherever that is, so that installation is simple, and I want it to launch the system editor, namely whatever $VISUAL
is set to. The launcher provided here works fine when I launch it from the command line using dex -v createshortcut.desktop
but when I launch it using from the GUI (Cinnamon/nemo) by clicking it does not load the text editor, but gives no error. When I launch using desktop-file-validate createshortcut.desktop
it throws errors that say
createshortcut.desktop: error: value "sh -c "exec $VISUAL $(dirname $0)/SHORTCUT.desktop" %k" for key "Exec" in group "Desktop Entry" contains a non-escaped character '$' in a quote, but it should be escaped with two backslashes ("\$")
3 times. I then go through and escape the three instances of $
and then errors go away in desktop-file-validate createshortcut.desktop
but dex no longer works to launch the editor correctly, and it will still not launch from the desktop click.
Here is the createlauncher.desktop
file that does launch the second .desktop file in the editor properly, but only from the command line using dex
:
#!/usr/bin/env xdg-open
[Desktop Entry]
Name=create shortcut
Exec=bash -c -e "exec $VISUAL $(dirname $0)/SHORTCUT.desktop" %k
Icon=text-editor
Type=Application
Comment=SAVE AS!!!!!
Terminal=false
And here is the read-only target, SHORTCUT.desktop
that should open in the $VISUAL
editor when createlauncher.desktop
works right:
#!/usr/bin/env xdg-open
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=NAME
Exec=xdg-open "PATHTOFILE"
then Icon=/usr/share/icons/HighContrast/scalable/emblems/emblem-symbolic-link.svg
Terminal=false
Comment= (1) make NAME for target (2) enter full absolute PATHTOFILE of source (3) SAVE AS to the target directory
My guess is that there is some ENV variable that bash has picked up that is not in the interactive bash launched from the createlauncher.desktop
file, but I am in over my head at that point.
Is there a ".bashrc" equivalent file read by all shells? seems to point toward my solution, but not sure.
desktop bash-expansion launcher
add a comment |
I have built a little launcher editor in a desktop file called "createlauncher.desktop" that opens up a second, read-only desktop launcher file called "SHORTCUT.desktop" in a text editor where a PATH to a file executable and a NAME are filled in and the launcher is saved to a new location. It mostly uses xdg-open and the main target is pdf files or else directories. the xdg-open part is working fine. This is so that I can have windows-style shortcuts (the desktop files) that Dropbox doesn't foul up like it does symbolic links.
I can use the launcher if I specify the full path to the read-only desktop file, but I have to invoke a specific text editor on an absolute path for it to work. I want it to look for the read-only .desktop file in the same directory, wherever that is, so that installation is simple, and I want it to launch the system editor, namely whatever $VISUAL
is set to. The launcher provided here works fine when I launch it from the command line using dex -v createshortcut.desktop
but when I launch it using from the GUI (Cinnamon/nemo) by clicking it does not load the text editor, but gives no error. When I launch using desktop-file-validate createshortcut.desktop
it throws errors that say
createshortcut.desktop: error: value "sh -c "exec $VISUAL $(dirname $0)/SHORTCUT.desktop" %k" for key "Exec" in group "Desktop Entry" contains a non-escaped character '$' in a quote, but it should be escaped with two backslashes ("\$")
3 times. I then go through and escape the three instances of $
and then errors go away in desktop-file-validate createshortcut.desktop
but dex no longer works to launch the editor correctly, and it will still not launch from the desktop click.
Here is the createlauncher.desktop
file that does launch the second .desktop file in the editor properly, but only from the command line using dex
:
#!/usr/bin/env xdg-open
[Desktop Entry]
Name=create shortcut
Exec=bash -c -e "exec $VISUAL $(dirname $0)/SHORTCUT.desktop" %k
Icon=text-editor
Type=Application
Comment=SAVE AS!!!!!
Terminal=false
And here is the read-only target, SHORTCUT.desktop
that should open in the $VISUAL
editor when createlauncher.desktop
works right:
#!/usr/bin/env xdg-open
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=NAME
Exec=xdg-open "PATHTOFILE"
then Icon=/usr/share/icons/HighContrast/scalable/emblems/emblem-symbolic-link.svg
Terminal=false
Comment= (1) make NAME for target (2) enter full absolute PATHTOFILE of source (3) SAVE AS to the target directory
My guess is that there is some ENV variable that bash has picked up that is not in the interactive bash launched from the createlauncher.desktop
file, but I am in over my head at that point.
Is there a ".bashrc" equivalent file read by all shells? seems to point toward my solution, but not sure.
desktop bash-expansion launcher
add a comment |
I have built a little launcher editor in a desktop file called "createlauncher.desktop" that opens up a second, read-only desktop launcher file called "SHORTCUT.desktop" in a text editor where a PATH to a file executable and a NAME are filled in and the launcher is saved to a new location. It mostly uses xdg-open and the main target is pdf files or else directories. the xdg-open part is working fine. This is so that I can have windows-style shortcuts (the desktop files) that Dropbox doesn't foul up like it does symbolic links.
I can use the launcher if I specify the full path to the read-only desktop file, but I have to invoke a specific text editor on an absolute path for it to work. I want it to look for the read-only .desktop file in the same directory, wherever that is, so that installation is simple, and I want it to launch the system editor, namely whatever $VISUAL
is set to. The launcher provided here works fine when I launch it from the command line using dex -v createshortcut.desktop
but when I launch it using from the GUI (Cinnamon/nemo) by clicking it does not load the text editor, but gives no error. When I launch using desktop-file-validate createshortcut.desktop
it throws errors that say
createshortcut.desktop: error: value "sh -c "exec $VISUAL $(dirname $0)/SHORTCUT.desktop" %k" for key "Exec" in group "Desktop Entry" contains a non-escaped character '$' in a quote, but it should be escaped with two backslashes ("\$")
3 times. I then go through and escape the three instances of $
and then errors go away in desktop-file-validate createshortcut.desktop
but dex no longer works to launch the editor correctly, and it will still not launch from the desktop click.
Here is the createlauncher.desktop
file that does launch the second .desktop file in the editor properly, but only from the command line using dex
:
#!/usr/bin/env xdg-open
[Desktop Entry]
Name=create shortcut
Exec=bash -c -e "exec $VISUAL $(dirname $0)/SHORTCUT.desktop" %k
Icon=text-editor
Type=Application
Comment=SAVE AS!!!!!
Terminal=false
And here is the read-only target, SHORTCUT.desktop
that should open in the $VISUAL
editor when createlauncher.desktop
works right:
#!/usr/bin/env xdg-open
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=NAME
Exec=xdg-open "PATHTOFILE"
then Icon=/usr/share/icons/HighContrast/scalable/emblems/emblem-symbolic-link.svg
Terminal=false
Comment= (1) make NAME for target (2) enter full absolute PATHTOFILE of source (3) SAVE AS to the target directory
My guess is that there is some ENV variable that bash has picked up that is not in the interactive bash launched from the createlauncher.desktop
file, but I am in over my head at that point.
Is there a ".bashrc" equivalent file read by all shells? seems to point toward my solution, but not sure.
desktop bash-expansion launcher
I have built a little launcher editor in a desktop file called "createlauncher.desktop" that opens up a second, read-only desktop launcher file called "SHORTCUT.desktop" in a text editor where a PATH to a file executable and a NAME are filled in and the launcher is saved to a new location. It mostly uses xdg-open and the main target is pdf files or else directories. the xdg-open part is working fine. This is so that I can have windows-style shortcuts (the desktop files) that Dropbox doesn't foul up like it does symbolic links.
I can use the launcher if I specify the full path to the read-only desktop file, but I have to invoke a specific text editor on an absolute path for it to work. I want it to look for the read-only .desktop file in the same directory, wherever that is, so that installation is simple, and I want it to launch the system editor, namely whatever $VISUAL
is set to. The launcher provided here works fine when I launch it from the command line using dex -v createshortcut.desktop
but when I launch it using from the GUI (Cinnamon/nemo) by clicking it does not load the text editor, but gives no error. When I launch using desktop-file-validate createshortcut.desktop
it throws errors that say
createshortcut.desktop: error: value "sh -c "exec $VISUAL $(dirname $0)/SHORTCUT.desktop" %k" for key "Exec" in group "Desktop Entry" contains a non-escaped character '$' in a quote, but it should be escaped with two backslashes ("\$")
3 times. I then go through and escape the three instances of $
and then errors go away in desktop-file-validate createshortcut.desktop
but dex no longer works to launch the editor correctly, and it will still not launch from the desktop click.
Here is the createlauncher.desktop
file that does launch the second .desktop file in the editor properly, but only from the command line using dex
:
#!/usr/bin/env xdg-open
[Desktop Entry]
Name=create shortcut
Exec=bash -c -e "exec $VISUAL $(dirname $0)/SHORTCUT.desktop" %k
Icon=text-editor
Type=Application
Comment=SAVE AS!!!!!
Terminal=false
And here is the read-only target, SHORTCUT.desktop
that should open in the $VISUAL
editor when createlauncher.desktop
works right:
#!/usr/bin/env xdg-open
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=NAME
Exec=xdg-open "PATHTOFILE"
then Icon=/usr/share/icons/HighContrast/scalable/emblems/emblem-symbolic-link.svg
Terminal=false
Comment= (1) make NAME for target (2) enter full absolute PATHTOFILE of source (3) SAVE AS to the target directory
My guess is that there is some ENV variable that bash has picked up that is not in the interactive bash launched from the createlauncher.desktop
file, but I am in over my head at that point.
Is there a ".bashrc" equivalent file read by all shells? seems to point toward my solution, but not sure.
desktop bash-expansion launcher
desktop bash-expansion launcher
asked 8 mins ago
Richard RathRichard Rath
1313
1313
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f503922%2fdesktop-launcher-of-visual-failing%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f503922%2fdesktop-launcher-of-visual-failing%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown