Is it possible to permanently show notifications on my screen?












3














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 the notification and then deactivates it 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?










share|improve this question




















  • 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
    2 days 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
    2 days 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
    2 days ago
















3














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 the notification and then deactivates it 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?










share|improve this question




















  • 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
    2 days 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
    2 days 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
    2 days ago














3












3








3







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 the notification and then deactivates it 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?










share|improve this question















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 the notification and then deactivates it 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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday

























asked 2 days ago









Rafael Muynarsk

502518




502518








  • 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
    2 days 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
    2 days 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
    2 days ago














  • 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
    2 days 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
    2 days 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
    2 days 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
2 days 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
2 days 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
2 days 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
2 days 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
2 days 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
2 days ago










1 Answer
1






active

oldest

votes


















6














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"





share|improve this answer























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    6














    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"





    share|improve this answer




























      6














      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"





      share|improve this answer


























        6












        6








        6






        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"





        share|improve this answer














        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"






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited 2 days ago

























        answered 2 days ago









        pomsky

        28.8k1188115




        28.8k1188115






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Mario Kart Wii

            What does “Dominus providebit” mean?

            Antonio Litta Visconti Arese