How to get “Epson Printer Utility” to start from Launcher in Ubuntu?
There is "Epson Printer Utility" that shows ink levels and allows to check nozzles and clean printer heads. This utility appeared not long ago and it is very useful, because there is no other way to see ink levels for printers without LED using Linux systems.
The utility can be downloaded from Epson Drivers Site.
After the deb package is installed the utility can be started by
epson-printer-utility
terminal command.
How can I get set it up to be started a normal way from Launcher or a desktop icon?
printing epson
add a comment |
There is "Epson Printer Utility" that shows ink levels and allows to check nozzles and clean printer heads. This utility appeared not long ago and it is very useful, because there is no other way to see ink levels for printers without LED using Linux systems.
The utility can be downloaded from Epson Drivers Site.
After the deb package is installed the utility can be started by
epson-printer-utility
terminal command.
How can I get set it up to be started a normal way from Launcher or a desktop icon?
printing epson
add a comment |
There is "Epson Printer Utility" that shows ink levels and allows to check nozzles and clean printer heads. This utility appeared not long ago and it is very useful, because there is no other way to see ink levels for printers without LED using Linux systems.
The utility can be downloaded from Epson Drivers Site.
After the deb package is installed the utility can be started by
epson-printer-utility
terminal command.
How can I get set it up to be started a normal way from Launcher or a desktop icon?
printing epson
There is "Epson Printer Utility" that shows ink levels and allows to check nozzles and clean printer heads. This utility appeared not long ago and it is very useful, because there is no other way to see ink levels for printers without LED using Linux systems.
The utility can be downloaded from Epson Drivers Site.
After the deb package is installed the utility can be started by
epson-printer-utility
terminal command.
How can I get set it up to be started a normal way from Launcher or a desktop icon?
printing epson
printing epson
edited Apr 1 '16 at 17:59
Pilot6
asked Apr 1 '16 at 17:27
Pilot6Pilot6
52.7k15108197
52.7k15108197
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
You need to create a desktop
file for it and change some permissions.
Create
/usr/share/applications/epson-utility.desktop
file with this content:
#!/usr/bin/env xdg-open
[Desktop Entry]
Encoding=UTF-8
Type=Application
Categories=Application;Printing;
Name=Epson Printer Utility
Exec=epson-printer-utility
Terminal=false
Icon=/opt/epson-printer-utility/resource/Images/AppIcon.png
Give permissions to this file to be run
sudo chmod +x /usr/share/applications/epson-utility.desktop
There are no permissions to read contents of
/opt/epson-printer-utility/resource/Images
directory for some reason. You need to grant them.
sudo chmod 755 /opt/epson-printer-utility/resource/Images
Now you will see the utility in your Launcher.
add a comment |
I did alt+F2 and epson-printer-utility and then locked the icon on panel, plain and simple.
This looks like a commentary, not an answer.
– Pilot6
May 14 '16 at 13:17
This provides the easiest way to add to the launcher.
– Arup Roy Chowdhury
May 14 '16 at 15:44
1
I like it. It's short and effective. +1
– David Foerster
May 19 '16 at 12:02
add a comment |
You could also try using gnome-panel to create an icon for it. You can install gnome-panel (from the terminal) with:
sudo apt-get install gnome-panel --no-install-recommends
and then start it (again from the terminal) with:
sudo gnome-desktop-item-edit /usr/share/applications/ --create-new
Then enter the name you would like the icon to have, the terminal command to start it, and a file path to a picture for the icon you want.
Is there a need to install gnome-panel just to run one program? The point was that there is an utility and it is possible to make a shortcut.
– Pilot6
May 14 '16 at 13:18
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2faskubuntu.com%2fquestions%2f752763%2fhow-to-get-epson-printer-utility-to-start-from-launcher-in-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to create a desktop
file for it and change some permissions.
Create
/usr/share/applications/epson-utility.desktop
file with this content:
#!/usr/bin/env xdg-open
[Desktop Entry]
Encoding=UTF-8
Type=Application
Categories=Application;Printing;
Name=Epson Printer Utility
Exec=epson-printer-utility
Terminal=false
Icon=/opt/epson-printer-utility/resource/Images/AppIcon.png
Give permissions to this file to be run
sudo chmod +x /usr/share/applications/epson-utility.desktop
There are no permissions to read contents of
/opt/epson-printer-utility/resource/Images
directory for some reason. You need to grant them.
sudo chmod 755 /opt/epson-printer-utility/resource/Images
Now you will see the utility in your Launcher.
add a comment |
You need to create a desktop
file for it and change some permissions.
Create
/usr/share/applications/epson-utility.desktop
file with this content:
#!/usr/bin/env xdg-open
[Desktop Entry]
Encoding=UTF-8
Type=Application
Categories=Application;Printing;
Name=Epson Printer Utility
Exec=epson-printer-utility
Terminal=false
Icon=/opt/epson-printer-utility/resource/Images/AppIcon.png
Give permissions to this file to be run
sudo chmod +x /usr/share/applications/epson-utility.desktop
There are no permissions to read contents of
/opt/epson-printer-utility/resource/Images
directory for some reason. You need to grant them.
sudo chmod 755 /opt/epson-printer-utility/resource/Images
Now you will see the utility in your Launcher.
add a comment |
You need to create a desktop
file for it and change some permissions.
Create
/usr/share/applications/epson-utility.desktop
file with this content:
#!/usr/bin/env xdg-open
[Desktop Entry]
Encoding=UTF-8
Type=Application
Categories=Application;Printing;
Name=Epson Printer Utility
Exec=epson-printer-utility
Terminal=false
Icon=/opt/epson-printer-utility/resource/Images/AppIcon.png
Give permissions to this file to be run
sudo chmod +x /usr/share/applications/epson-utility.desktop
There are no permissions to read contents of
/opt/epson-printer-utility/resource/Images
directory for some reason. You need to grant them.
sudo chmod 755 /opt/epson-printer-utility/resource/Images
Now you will see the utility in your Launcher.
You need to create a desktop
file for it and change some permissions.
Create
/usr/share/applications/epson-utility.desktop
file with this content:
#!/usr/bin/env xdg-open
[Desktop Entry]
Encoding=UTF-8
Type=Application
Categories=Application;Printing;
Name=Epson Printer Utility
Exec=epson-printer-utility
Terminal=false
Icon=/opt/epson-printer-utility/resource/Images/AppIcon.png
Give permissions to this file to be run
sudo chmod +x /usr/share/applications/epson-utility.desktop
There are no permissions to read contents of
/opt/epson-printer-utility/resource/Images
directory for some reason. You need to grant them.
sudo chmod 755 /opt/epson-printer-utility/resource/Images
Now you will see the utility in your Launcher.
edited Apr 17 '16 at 19:19
answered Apr 1 '16 at 17:29
Pilot6Pilot6
52.7k15108197
52.7k15108197
add a comment |
add a comment |
I did alt+F2 and epson-printer-utility and then locked the icon on panel, plain and simple.
This looks like a commentary, not an answer.
– Pilot6
May 14 '16 at 13:17
This provides the easiest way to add to the launcher.
– Arup Roy Chowdhury
May 14 '16 at 15:44
1
I like it. It's short and effective. +1
– David Foerster
May 19 '16 at 12:02
add a comment |
I did alt+F2 and epson-printer-utility and then locked the icon on panel, plain and simple.
This looks like a commentary, not an answer.
– Pilot6
May 14 '16 at 13:17
This provides the easiest way to add to the launcher.
– Arup Roy Chowdhury
May 14 '16 at 15:44
1
I like it. It's short and effective. +1
– David Foerster
May 19 '16 at 12:02
add a comment |
I did alt+F2 and epson-printer-utility and then locked the icon on panel, plain and simple.
I did alt+F2 and epson-printer-utility and then locked the icon on panel, plain and simple.
answered May 14 '16 at 13:09
Arup Roy ChowdhuryArup Roy Chowdhury
1,487911
1,487911
This looks like a commentary, not an answer.
– Pilot6
May 14 '16 at 13:17
This provides the easiest way to add to the launcher.
– Arup Roy Chowdhury
May 14 '16 at 15:44
1
I like it. It's short and effective. +1
– David Foerster
May 19 '16 at 12:02
add a comment |
This looks like a commentary, not an answer.
– Pilot6
May 14 '16 at 13:17
This provides the easiest way to add to the launcher.
– Arup Roy Chowdhury
May 14 '16 at 15:44
1
I like it. It's short and effective. +1
– David Foerster
May 19 '16 at 12:02
This looks like a commentary, not an answer.
– Pilot6
May 14 '16 at 13:17
This looks like a commentary, not an answer.
– Pilot6
May 14 '16 at 13:17
This provides the easiest way to add to the launcher.
– Arup Roy Chowdhury
May 14 '16 at 15:44
This provides the easiest way to add to the launcher.
– Arup Roy Chowdhury
May 14 '16 at 15:44
1
1
I like it. It's short and effective. +1
– David Foerster
May 19 '16 at 12:02
I like it. It's short and effective. +1
– David Foerster
May 19 '16 at 12:02
add a comment |
You could also try using gnome-panel to create an icon for it. You can install gnome-panel (from the terminal) with:
sudo apt-get install gnome-panel --no-install-recommends
and then start it (again from the terminal) with:
sudo gnome-desktop-item-edit /usr/share/applications/ --create-new
Then enter the name you would like the icon to have, the terminal command to start it, and a file path to a picture for the icon you want.
Is there a need to install gnome-panel just to run one program? The point was that there is an utility and it is possible to make a shortcut.
– Pilot6
May 14 '16 at 13:18
add a comment |
You could also try using gnome-panel to create an icon for it. You can install gnome-panel (from the terminal) with:
sudo apt-get install gnome-panel --no-install-recommends
and then start it (again from the terminal) with:
sudo gnome-desktop-item-edit /usr/share/applications/ --create-new
Then enter the name you would like the icon to have, the terminal command to start it, and a file path to a picture for the icon you want.
Is there a need to install gnome-panel just to run one program? The point was that there is an utility and it is possible to make a shortcut.
– Pilot6
May 14 '16 at 13:18
add a comment |
You could also try using gnome-panel to create an icon for it. You can install gnome-panel (from the terminal) with:
sudo apt-get install gnome-panel --no-install-recommends
and then start it (again from the terminal) with:
sudo gnome-desktop-item-edit /usr/share/applications/ --create-new
Then enter the name you would like the icon to have, the terminal command to start it, and a file path to a picture for the icon you want.
You could also try using gnome-panel to create an icon for it. You can install gnome-panel (from the terminal) with:
sudo apt-get install gnome-panel --no-install-recommends
and then start it (again from the terminal) with:
sudo gnome-desktop-item-edit /usr/share/applications/ --create-new
Then enter the name you would like the icon to have, the terminal command to start it, and a file path to a picture for the icon you want.
answered Apr 1 '16 at 22:07
TimoshenkoTimoshenko
193
193
Is there a need to install gnome-panel just to run one program? The point was that there is an utility and it is possible to make a shortcut.
– Pilot6
May 14 '16 at 13:18
add a comment |
Is there a need to install gnome-panel just to run one program? The point was that there is an utility and it is possible to make a shortcut.
– Pilot6
May 14 '16 at 13:18
Is there a need to install gnome-panel just to run one program? The point was that there is an utility and it is possible to make a shortcut.
– Pilot6
May 14 '16 at 13:18
Is there a need to install gnome-panel just to run one program? The point was that there is an utility and it is possible to make a shortcut.
– Pilot6
May 14 '16 at 13:18
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f752763%2fhow-to-get-epson-printer-utility-to-start-from-launcher-in-ubuntu%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