How to add 'open folder as root' in Elementary OS file manager context menu?

Multi tool use
Here it is the solution in order to add the 'open terminal here' into the context menu of Elementary OS' file manager (generically called 'Files' - the executable is pantheon-files
).
For that specific demand, the idea is to create the file /usr/share/contractor/terminal.contract
and add something like
[Contractor Entry]
Name=Open Terminal here
Icon=terminal
Description=Open Terminal here
MimeType=inode;application/x-sh;application/x-executable;
Exec=pantheon-terminal -d %U
Gettext-Domain=pantheon-terminal
But how to adapt that and have a model to add other commands, namely - following my order of priorities - 'open folder as root'?
files file-manager menu elementary-os
add a comment |
Here it is the solution in order to add the 'open terminal here' into the context menu of Elementary OS' file manager (generically called 'Files' - the executable is pantheon-files
).
For that specific demand, the idea is to create the file /usr/share/contractor/terminal.contract
and add something like
[Contractor Entry]
Name=Open Terminal here
Icon=terminal
Description=Open Terminal here
MimeType=inode;application/x-sh;application/x-executable;
Exec=pantheon-terminal -d %U
Gettext-Domain=pantheon-terminal
But how to adapt that and have a model to add other commands, namely - following my order of priorities - 'open folder as root'?
files file-manager menu elementary-os
add a comment |
Here it is the solution in order to add the 'open terminal here' into the context menu of Elementary OS' file manager (generically called 'Files' - the executable is pantheon-files
).
For that specific demand, the idea is to create the file /usr/share/contractor/terminal.contract
and add something like
[Contractor Entry]
Name=Open Terminal here
Icon=terminal
Description=Open Terminal here
MimeType=inode;application/x-sh;application/x-executable;
Exec=pantheon-terminal -d %U
Gettext-Domain=pantheon-terminal
But how to adapt that and have a model to add other commands, namely - following my order of priorities - 'open folder as root'?
files file-manager menu elementary-os
Here it is the solution in order to add the 'open terminal here' into the context menu of Elementary OS' file manager (generically called 'Files' - the executable is pantheon-files
).
For that specific demand, the idea is to create the file /usr/share/contractor/terminal.contract
and add something like
[Contractor Entry]
Name=Open Terminal here
Icon=terminal
Description=Open Terminal here
MimeType=inode;application/x-sh;application/x-executable;
Exec=pantheon-terminal -d %U
Gettext-Domain=pantheon-terminal
But how to adapt that and have a model to add other commands, namely - following my order of priorities - 'open folder as root'?
files file-manager menu elementary-os
files file-manager menu elementary-os
edited Sep 29 '13 at 9:17
cipricus
asked Sep 26 '13 at 14:49
cipricuscipricus
2,9201253138
2,9201253138
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
In order to create 'Open folder as root' context menu command - and in order to create any new such command - a new *.contract
file has to be created in /usr/share/contractor
.
To create the file in gedit
:
sudo gedit /usr/share/contractor/Open_as_admin.contract
For 'Open folder as root' - that file would have to contain something like
[Contractor Entry]
Name=Open folder as root
Icon=gksu-root-terminal
Description=Open folder as root
MimeType=inode;application/x-sh;application/x-executable;
Exec=gksudo pantheon-files -d %U
Gettext-Domain=pantheon-files
(but no icon appears in te context menu anyway)
@ciprius Great explanation! Do you know if is possible a submenu? Thanks in advance!
– costales
Jan 18 '15 at 16:14
1
@costales - do not know, sorry
– cipricus
Mar 24 '15 at 10:07
3
If its not showing up for you make sure you have gksudo installed. I didn't and I had to remove parts of the config file until I realized what was stopping it from showing up.
– kagronick
Jul 19 '15 at 4:43
add a comment |
[Contractor Entry]
Name=Open folder as root
Icon=gksu-root-terminal
Description=Open folder as root
MimeType=inode;application/x-sh;application/x-executable;
Exec=/usr/bin/io.elementary.files-pkexec
Gettext-Domain=pantheon-files
This worked for me in Elementary OS 5 Juno 01/20/2019.
Also, use nano instead of gedit.
New contributor
n00b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
(1) This is the same as the accepted answer except for one line. What is the significance of that line? Is your answer better than the other one? (2) What’s wrong with gedit?
– G-Man
7 mins ago
add a comment |
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%2f92494%2fhow-to-add-open-folder-as-root-in-elementary-os-file-manager-context-menu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
In order to create 'Open folder as root' context menu command - and in order to create any new such command - a new *.contract
file has to be created in /usr/share/contractor
.
To create the file in gedit
:
sudo gedit /usr/share/contractor/Open_as_admin.contract
For 'Open folder as root' - that file would have to contain something like
[Contractor Entry]
Name=Open folder as root
Icon=gksu-root-terminal
Description=Open folder as root
MimeType=inode;application/x-sh;application/x-executable;
Exec=gksudo pantheon-files -d %U
Gettext-Domain=pantheon-files
(but no icon appears in te context menu anyway)
@ciprius Great explanation! Do you know if is possible a submenu? Thanks in advance!
– costales
Jan 18 '15 at 16:14
1
@costales - do not know, sorry
– cipricus
Mar 24 '15 at 10:07
3
If its not showing up for you make sure you have gksudo installed. I didn't and I had to remove parts of the config file until I realized what was stopping it from showing up.
– kagronick
Jul 19 '15 at 4:43
add a comment |
In order to create 'Open folder as root' context menu command - and in order to create any new such command - a new *.contract
file has to be created in /usr/share/contractor
.
To create the file in gedit
:
sudo gedit /usr/share/contractor/Open_as_admin.contract
For 'Open folder as root' - that file would have to contain something like
[Contractor Entry]
Name=Open folder as root
Icon=gksu-root-terminal
Description=Open folder as root
MimeType=inode;application/x-sh;application/x-executable;
Exec=gksudo pantheon-files -d %U
Gettext-Domain=pantheon-files
(but no icon appears in te context menu anyway)
@ciprius Great explanation! Do you know if is possible a submenu? Thanks in advance!
– costales
Jan 18 '15 at 16:14
1
@costales - do not know, sorry
– cipricus
Mar 24 '15 at 10:07
3
If its not showing up for you make sure you have gksudo installed. I didn't and I had to remove parts of the config file until I realized what was stopping it from showing up.
– kagronick
Jul 19 '15 at 4:43
add a comment |
In order to create 'Open folder as root' context menu command - and in order to create any new such command - a new *.contract
file has to be created in /usr/share/contractor
.
To create the file in gedit
:
sudo gedit /usr/share/contractor/Open_as_admin.contract
For 'Open folder as root' - that file would have to contain something like
[Contractor Entry]
Name=Open folder as root
Icon=gksu-root-terminal
Description=Open folder as root
MimeType=inode;application/x-sh;application/x-executable;
Exec=gksudo pantheon-files -d %U
Gettext-Domain=pantheon-files
(but no icon appears in te context menu anyway)
In order to create 'Open folder as root' context menu command - and in order to create any new such command - a new *.contract
file has to be created in /usr/share/contractor
.
To create the file in gedit
:
sudo gedit /usr/share/contractor/Open_as_admin.contract
For 'Open folder as root' - that file would have to contain something like
[Contractor Entry]
Name=Open folder as root
Icon=gksu-root-terminal
Description=Open folder as root
MimeType=inode;application/x-sh;application/x-executable;
Exec=gksudo pantheon-files -d %U
Gettext-Domain=pantheon-files
(but no icon appears in te context menu anyway)
edited May 25 '15 at 8:56
answered Sep 26 '13 at 16:12
cipricuscipricus
2,9201253138
2,9201253138
@ciprius Great explanation! Do you know if is possible a submenu? Thanks in advance!
– costales
Jan 18 '15 at 16:14
1
@costales - do not know, sorry
– cipricus
Mar 24 '15 at 10:07
3
If its not showing up for you make sure you have gksudo installed. I didn't and I had to remove parts of the config file until I realized what was stopping it from showing up.
– kagronick
Jul 19 '15 at 4:43
add a comment |
@ciprius Great explanation! Do you know if is possible a submenu? Thanks in advance!
– costales
Jan 18 '15 at 16:14
1
@costales - do not know, sorry
– cipricus
Mar 24 '15 at 10:07
3
If its not showing up for you make sure you have gksudo installed. I didn't and I had to remove parts of the config file until I realized what was stopping it from showing up.
– kagronick
Jul 19 '15 at 4:43
@ciprius Great explanation! Do you know if is possible a submenu? Thanks in advance!
– costales
Jan 18 '15 at 16:14
@ciprius Great explanation! Do you know if is possible a submenu? Thanks in advance!
– costales
Jan 18 '15 at 16:14
1
1
@costales - do not know, sorry
– cipricus
Mar 24 '15 at 10:07
@costales - do not know, sorry
– cipricus
Mar 24 '15 at 10:07
3
3
If its not showing up for you make sure you have gksudo installed. I didn't and I had to remove parts of the config file until I realized what was stopping it from showing up.
– kagronick
Jul 19 '15 at 4:43
If its not showing up for you make sure you have gksudo installed. I didn't and I had to remove parts of the config file until I realized what was stopping it from showing up.
– kagronick
Jul 19 '15 at 4:43
add a comment |
[Contractor Entry]
Name=Open folder as root
Icon=gksu-root-terminal
Description=Open folder as root
MimeType=inode;application/x-sh;application/x-executable;
Exec=/usr/bin/io.elementary.files-pkexec
Gettext-Domain=pantheon-files
This worked for me in Elementary OS 5 Juno 01/20/2019.
Also, use nano instead of gedit.
New contributor
n00b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
(1) This is the same as the accepted answer except for one line. What is the significance of that line? Is your answer better than the other one? (2) What’s wrong with gedit?
– G-Man
7 mins ago
add a comment |
[Contractor Entry]
Name=Open folder as root
Icon=gksu-root-terminal
Description=Open folder as root
MimeType=inode;application/x-sh;application/x-executable;
Exec=/usr/bin/io.elementary.files-pkexec
Gettext-Domain=pantheon-files
This worked for me in Elementary OS 5 Juno 01/20/2019.
Also, use nano instead of gedit.
New contributor
n00b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
(1) This is the same as the accepted answer except for one line. What is the significance of that line? Is your answer better than the other one? (2) What’s wrong with gedit?
– G-Man
7 mins ago
add a comment |
[Contractor Entry]
Name=Open folder as root
Icon=gksu-root-terminal
Description=Open folder as root
MimeType=inode;application/x-sh;application/x-executable;
Exec=/usr/bin/io.elementary.files-pkexec
Gettext-Domain=pantheon-files
This worked for me in Elementary OS 5 Juno 01/20/2019.
Also, use nano instead of gedit.
New contributor
n00b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
[Contractor Entry]
Name=Open folder as root
Icon=gksu-root-terminal
Description=Open folder as root
MimeType=inode;application/x-sh;application/x-executable;
Exec=/usr/bin/io.elementary.files-pkexec
Gettext-Domain=pantheon-files
This worked for me in Elementary OS 5 Juno 01/20/2019.
Also, use nano instead of gedit.
New contributor
n00b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 7 mins ago


G-Man
13k93365
13k93365
New contributor
n00b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 27 mins ago
n00bn00b
11
11
New contributor
n00b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
n00b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
n00b is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
(1) This is the same as the accepted answer except for one line. What is the significance of that line? Is your answer better than the other one? (2) What’s wrong with gedit?
– G-Man
7 mins ago
add a comment |
(1) This is the same as the accepted answer except for one line. What is the significance of that line? Is your answer better than the other one? (2) What’s wrong with gedit?
– G-Man
7 mins ago
(1) This is the same as the accepted answer except for one line. What is the significance of that line? Is your answer better than the other one? (2) What’s wrong with gedit?
– G-Man
7 mins ago
(1) This is the same as the accepted answer except for one line. What is the significance of that line? Is your answer better than the other one? (2) What’s wrong with gedit?
– G-Man
7 mins ago
add a comment |
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%2f92494%2fhow-to-add-open-folder-as-root-in-elementary-os-file-manager-context-menu%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
ErQiUTY 8dCPF4yieAVviOiRj58nWsz,SicRAZ01t v1Bhs,00KHlJd3k5Rlf EJ lr nnyNbezir Qn,kLf