Is it possible to permanently show notifications on my screen?
With the command notify-send
, it's possible to show a notification on screen for a small amount of time. But I'd like to have a specific notification on my screen for an undetermined amount of time. I'm creating a script that is initiated and terminated by the user, for me it'd be useful to have a command that activates and deactivates the notification after my script is finished. The pseudocode would be something like this:
#!/bin/bash
activatenotification "my text"
# my script commands
deactivatenotification
Is it possible to do? Is there such a command line tool or can I do something like that using notify-send
?
scripts notification notify-send
add a comment |
With the command notify-send
, it's possible to show a notification on screen for a small amount of time. But I'd like to have a specific notification on my screen for an undetermined amount of time. I'm creating a script that is initiated and terminated by the user, for me it'd be useful to have a command that activates and deactivates the notification after my script is finished. The pseudocode would be something like this:
#!/bin/bash
activatenotification "my text"
# my script commands
deactivatenotification
Is it possible to do? Is there such a command line tool or can I do something like that using notify-send
?
scripts notification notify-send
1
notify-send
is built in such way that the notifications do have to exit. What you can use iszenity
to show popups. These can stay on screen indefinitely. They're small GUI windows. So you can either close or kill them. Does that sound like something that you're looking for ?
– Sergiy Kolodyazhnyy
5 hours ago
@SergiyKolodyazhnyy I'd like to keep using the computer while I see the notification on my screen. I think thatzenity
doesn't allow me to navigate through other windows while it's open, does it?
– Rafael Muynarsk
5 hours ago
Zenity dialog windows are just like any other application windows. You can still put them in the background or minimize them and keep doing other things.
– Byte Commander
4 hours ago
add a comment |
With the command notify-send
, it's possible to show a notification on screen for a small amount of time. But I'd like to have a specific notification on my screen for an undetermined amount of time. I'm creating a script that is initiated and terminated by the user, for me it'd be useful to have a command that activates and deactivates the notification after my script is finished. The pseudocode would be something like this:
#!/bin/bash
activatenotification "my text"
# my script commands
deactivatenotification
Is it possible to do? Is there such a command line tool or can I do something like that using notify-send
?
scripts notification notify-send
With the command notify-send
, it's possible to show a notification on screen for a small amount of time. But I'd like to have a specific notification on my screen for an undetermined amount of time. I'm creating a script that is initiated and terminated by the user, for me it'd be useful to have a command that activates and deactivates the notification after my script is finished. The pseudocode would be something like this:
#!/bin/bash
activatenotification "my text"
# my script commands
deactivatenotification
Is it possible to do? Is there such a command line tool or can I do something like that using notify-send
?
scripts notification notify-send
scripts notification notify-send
edited 4 hours ago
asked 5 hours ago
Rafael Muynarsk
497518
497518
1
notify-send
is built in such way that the notifications do have to exit. What you can use iszenity
to show popups. These can stay on screen indefinitely. They're small GUI windows. So you can either close or kill them. Does that sound like something that you're looking for ?
– Sergiy Kolodyazhnyy
5 hours ago
@SergiyKolodyazhnyy I'd like to keep using the computer while I see the notification on my screen. I think thatzenity
doesn't allow me to navigate through other windows while it's open, does it?
– Rafael Muynarsk
5 hours ago
Zenity dialog windows are just like any other application windows. You can still put them in the background or minimize them and keep doing other things.
– Byte Commander
4 hours ago
add a comment |
1
notify-send
is built in such way that the notifications do have to exit. What you can use iszenity
to show popups. These can stay on screen indefinitely. They're small GUI windows. So you can either close or kill them. Does that sound like something that you're looking for ?
– Sergiy Kolodyazhnyy
5 hours ago
@SergiyKolodyazhnyy I'd like to keep using the computer while I see the notification on my screen. I think thatzenity
doesn't allow me to navigate through other windows while it's open, does it?
– Rafael Muynarsk
5 hours ago
Zenity dialog windows are just like any other application windows. You can still put them in the background or minimize them and keep doing other things.
– Byte Commander
4 hours ago
1
1
notify-send
is built in such way that the notifications do have to exit. What you can use is zenity
to show popups. These can stay on screen indefinitely. They're small GUI windows. So you can either close or kill them. Does that sound like something that you're looking for ?– Sergiy Kolodyazhnyy
5 hours ago
notify-send
is built in such way that the notifications do have to exit. What you can use is zenity
to show popups. These can stay on screen indefinitely. They're small GUI windows. So you can either close or kill them. Does that sound like something that you're looking for ?– Sergiy Kolodyazhnyy
5 hours ago
@SergiyKolodyazhnyy I'd like to keep using the computer while I see the notification on my screen. I think that
zenity
doesn't allow me to navigate through other windows while it's open, does it?– Rafael Muynarsk
5 hours ago
@SergiyKolodyazhnyy I'd like to keep using the computer while I see the notification on my screen. I think that
zenity
doesn't allow me to navigate through other windows while it's open, does it?– Rafael Muynarsk
5 hours ago
Zenity dialog windows are just like any other application windows. You can still put them in the background or minimize them and keep doing other things.
– Byte Commander
4 hours ago
Zenity dialog windows are just like any other application windows. You can still put them in the background or minimize them and keep doing other things.
– Byte Commander
4 hours ago
add a comment |
1 Answer
1
active
oldest
votes
If your issue is with the short duration of the notify-send
alert, then you can set the urgency level of an alert to 'critical'. This would produce a persistent notification which you'll have to dismiss manually.
Use the following format
notify-send -u critical "Header" "Body text"
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%2f1107059%2fis-it-possible-to-permanently-show-notifications-on-my-screen%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If your issue is with the short duration of the notify-send
alert, then you can set the urgency level of an alert to 'critical'. This would produce a persistent notification which you'll have to dismiss manually.
Use the following format
notify-send -u critical "Header" "Body text"
add a comment |
If your issue is with the short duration of the notify-send
alert, then you can set the urgency level of an alert to 'critical'. This would produce a persistent notification which you'll have to dismiss manually.
Use the following format
notify-send -u critical "Header" "Body text"
add a comment |
If your issue is with the short duration of the notify-send
alert, then you can set the urgency level of an alert to 'critical'. This would produce a persistent notification which you'll have to dismiss manually.
Use the following format
notify-send -u critical "Header" "Body text"
If your issue is with the short duration of the notify-send
alert, then you can set the urgency level of an alert to 'critical'. This would produce a persistent notification which you'll have to dismiss manually.
Use the following format
notify-send -u critical "Header" "Body text"
edited 4 hours ago
answered 4 hours ago
pomsky
28.7k1188113
28.7k1188113
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f1107059%2fis-it-possible-to-permanently-show-notifications-on-my-screen%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
1
notify-send
is built in such way that the notifications do have to exit. What you can use iszenity
to show popups. These can stay on screen indefinitely. They're small GUI windows. So you can either close or kill them. Does that sound like something that you're looking for ?– Sergiy Kolodyazhnyy
5 hours ago
@SergiyKolodyazhnyy I'd like to keep using the computer while I see the notification on my screen. I think that
zenity
doesn't allow me to navigate through other windows while it's open, does it?– Rafael Muynarsk
5 hours ago
Zenity dialog windows are just like any other application windows. You can still put them in the background or minimize them and keep doing other things.
– Byte Commander
4 hours ago