What are the alternatives for notify-send?What are the alternatives to Network Manager for wireless?Where are all the `alternatives` stored?Expiry time in notify-send notificationsWhat are the Alternatives For RemasterSys?Notification TransparencyLess volatile alternative to notify-send for notificationsMultiple notifications via notify-osd or alternativesnotify-send and terminal commandWhat are the opensource alternatives for MS Project in order to manage Project management?notify-send not working under Flashback

Best mythical creature to use as livestock?

Is it ok to include an epilogue dedicated to colleagues who passed away in the end of the manuscript?

Running a subshell from the middle of the current command

Is "history" a male-biased word ("his+story")?

What to do when during a meeting client people start to fight (even physically) with each others?

Does Linux have system calls to access all the features of the file systems it supports?

Provisioning profile doesn't include the application-identifier and keychain-access-groups entitlements

Latest web browser compatible with Windows 98

Why does Deadpool say "You're welcome, Canada," after shooting Ryan Reynolds in the end credits?

How to deal with a cynical class?

Good allowance savings plan?

What is the blue range indicating on this manifold pressure gauge?

If Invisibility ends because the original caster casts a non-concentration spell, does Invisibility also end on other targets of the original casting?

Word for a person who has no opinion about whether god exists

Can the druid cantrip Thorn Whip really defeat a water weird this easily?

Want to switch to tankless, but can I use my existing wiring?

What is the likely impact on flights of grounding an entire aircraft series?

Single word request: Harming the benefactor

If the Captain's screens are out, does he switch seats with the co-pilot?

Force user to remove USB token

Question about partial fractions with irreducible quadratic factors

When were linguistics departments first established

Decoding assembly instructions in a Game Boy disassembler

Unreachable code, but reachable with exception



What are the alternatives for notify-send?


What are the alternatives to Network Manager for wireless?Where are all the `alternatives` stored?Expiry time in notify-send notificationsWhat are the Alternatives For RemasterSys?Notification TransparencyLess volatile alternative to notify-send for notificationsMultiple notifications via notify-osd or alternativesnotify-send and terminal commandWhat are the opensource alternatives for MS Project in order to manage Project management?notify-send not working under Flashback













10















I use notify-send for desktop notifications and I get notifications with expected summary and body. However, notify-send has limitations and so I would like a few recommendations on alternatives for notify-send.



I would like these extra features :



  1. Expiration time.

  2. Size customizations(size of the bubble).

  3. Location modifications(location of the bubble).

  4. Bubble look(color,transparency,shading)(if possible).

I know python-notify and hesitate to use that as I am not familiar Python. I would like a complete stand-alone program. Any suggestions?










share|improve this question




























    10















    I use notify-send for desktop notifications and I get notifications with expected summary and body. However, notify-send has limitations and so I would like a few recommendations on alternatives for notify-send.



    I would like these extra features :



    1. Expiration time.

    2. Size customizations(size of the bubble).

    3. Location modifications(location of the bubble).

    4. Bubble look(color,transparency,shading)(if possible).

    I know python-notify and hesitate to use that as I am not familiar Python. I would like a complete stand-alone program. Any suggestions?










    share|improve this question


























      10












      10








      10


      2






      I use notify-send for desktop notifications and I get notifications with expected summary and body. However, notify-send has limitations and so I would like a few recommendations on alternatives for notify-send.



      I would like these extra features :



      1. Expiration time.

      2. Size customizations(size of the bubble).

      3. Location modifications(location of the bubble).

      4. Bubble look(color,transparency,shading)(if possible).

      I know python-notify and hesitate to use that as I am not familiar Python. I would like a complete stand-alone program. Any suggestions?










      share|improve this question
















      I use notify-send for desktop notifications and I get notifications with expected summary and body. However, notify-send has limitations and so I would like a few recommendations on alternatives for notify-send.



      I would like these extra features :



      1. Expiration time.

      2. Size customizations(size of the bubble).

      3. Location modifications(location of the bubble).

      4. Bubble look(color,transparency,shading)(if possible).

      I know python-notify and hesitate to use that as I am not familiar Python. I would like a complete stand-alone program. Any suggestions?







      application-development notification development alternative






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 27 '13 at 17:00









      Seth

      34.9k27112165




      34.9k27112165










      asked Jan 27 '13 at 16:57









      VedValsVedVals

      1,60162543




      1,60162543




















          3 Answers
          3






          active

          oldest

          votes


















          0














          On Unity, or any other desktop that uses Ubuntu's notify-osd, you don't have the option to change the notification bubble's size, position, look or how long it is displayed.






          share|improve this answer


















          • 1





            Can notify-osd be replaced by any other daemon, if available, which can be customised?

            – VedVals
            Jan 29 '13 at 4:52











          • Probably, as long as they use the same XDG API

            – mhall119
            Jan 29 '13 at 14:26






          • 3





            I was asking for the replacement, not just the possibility.

            – VedVals
            Jan 29 '13 at 15:23











          • @mhall119, I see, but is it possible to send notifications like how sound/brightness notifications do? I could’t find anything on the web.

            – AliNâ
            Jul 16 '13 at 1:40






          • 1





            @VedVals Yes, you can replace it, although it doesn't always look pretty. iirc, gnome-notification-daemon is one option.

            – Seth
            Aug 8 '14 at 17:10


















          1














          My suggestion is to use yad, which is a fork of Zenity.



          Installation:



          sudo apt install yad


          If not available on your version run before:



          sudo add-apt-repository ppa:webupd8team/y-ppa-manager
          sudo apt-get update


          Learn about yad:



          man yad


          It is not an ideal solution, but yad is powerful and flexible, and it has a time-out option.






          share|improve this answer

























          • yad doesn't work the way I want. It gives windowed notifications. It is great but I want something like notify-send, not windowed. Also, the system crashed on trying to get a notification bubble.

            – VedVals
            Jan 27 '13 at 17:55


















          1














          I took a look at yad as suggested by Paddy Landau. It allowed me to display a notification without a window border, that did not steal focus, and that automatically closed after 1 second. I could not find a way to change the window background color, but I could change the text color and size using Pango Text Attribute Markup Language. The following script increases volume by 3% then displays the current volume level using yad:



          #!/bin/bash

          amixer -q -D pulse sset Master 3%+
          VOLUME=`awk -F"[][]" '/Front Left.*Playback/ print $2 ' <(amixer -D pulse sget Master)`
          yad --timeout 1 --skip-taskbar --center --no-buttons --text="Volume:" --width=200 --text-align=center --undecorated --text="<span color="#ffffff" bgcolor="#000000" font_size="large" font_weight="heavy"> Volume: $VOLUME </span>"





          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%2f248298%2fwhat-are-the-alternatives-for-notify-send%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









            0














            On Unity, or any other desktop that uses Ubuntu's notify-osd, you don't have the option to change the notification bubble's size, position, look or how long it is displayed.






            share|improve this answer


















            • 1





              Can notify-osd be replaced by any other daemon, if available, which can be customised?

              – VedVals
              Jan 29 '13 at 4:52











            • Probably, as long as they use the same XDG API

              – mhall119
              Jan 29 '13 at 14:26






            • 3





              I was asking for the replacement, not just the possibility.

              – VedVals
              Jan 29 '13 at 15:23











            • @mhall119, I see, but is it possible to send notifications like how sound/brightness notifications do? I could’t find anything on the web.

              – AliNâ
              Jul 16 '13 at 1:40






            • 1





              @VedVals Yes, you can replace it, although it doesn't always look pretty. iirc, gnome-notification-daemon is one option.

              – Seth
              Aug 8 '14 at 17:10















            0














            On Unity, or any other desktop that uses Ubuntu's notify-osd, you don't have the option to change the notification bubble's size, position, look or how long it is displayed.






            share|improve this answer


















            • 1





              Can notify-osd be replaced by any other daemon, if available, which can be customised?

              – VedVals
              Jan 29 '13 at 4:52











            • Probably, as long as they use the same XDG API

              – mhall119
              Jan 29 '13 at 14:26






            • 3





              I was asking for the replacement, not just the possibility.

              – VedVals
              Jan 29 '13 at 15:23











            • @mhall119, I see, but is it possible to send notifications like how sound/brightness notifications do? I could’t find anything on the web.

              – AliNâ
              Jul 16 '13 at 1:40






            • 1





              @VedVals Yes, you can replace it, although it doesn't always look pretty. iirc, gnome-notification-daemon is one option.

              – Seth
              Aug 8 '14 at 17:10













            0












            0








            0







            On Unity, or any other desktop that uses Ubuntu's notify-osd, you don't have the option to change the notification bubble's size, position, look or how long it is displayed.






            share|improve this answer













            On Unity, or any other desktop that uses Ubuntu's notify-osd, you don't have the option to change the notification bubble's size, position, look or how long it is displayed.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jan 28 '13 at 13:54









            mhall119mhall119

            4,7791124




            4,7791124







            • 1





              Can notify-osd be replaced by any other daemon, if available, which can be customised?

              – VedVals
              Jan 29 '13 at 4:52











            • Probably, as long as they use the same XDG API

              – mhall119
              Jan 29 '13 at 14:26






            • 3





              I was asking for the replacement, not just the possibility.

              – VedVals
              Jan 29 '13 at 15:23











            • @mhall119, I see, but is it possible to send notifications like how sound/brightness notifications do? I could’t find anything on the web.

              – AliNâ
              Jul 16 '13 at 1:40






            • 1





              @VedVals Yes, you can replace it, although it doesn't always look pretty. iirc, gnome-notification-daemon is one option.

              – Seth
              Aug 8 '14 at 17:10












            • 1





              Can notify-osd be replaced by any other daemon, if available, which can be customised?

              – VedVals
              Jan 29 '13 at 4:52











            • Probably, as long as they use the same XDG API

              – mhall119
              Jan 29 '13 at 14:26






            • 3





              I was asking for the replacement, not just the possibility.

              – VedVals
              Jan 29 '13 at 15:23











            • @mhall119, I see, but is it possible to send notifications like how sound/brightness notifications do? I could’t find anything on the web.

              – AliNâ
              Jul 16 '13 at 1:40






            • 1





              @VedVals Yes, you can replace it, although it doesn't always look pretty. iirc, gnome-notification-daemon is one option.

              – Seth
              Aug 8 '14 at 17:10







            1




            1





            Can notify-osd be replaced by any other daemon, if available, which can be customised?

            – VedVals
            Jan 29 '13 at 4:52





            Can notify-osd be replaced by any other daemon, if available, which can be customised?

            – VedVals
            Jan 29 '13 at 4:52













            Probably, as long as they use the same XDG API

            – mhall119
            Jan 29 '13 at 14:26





            Probably, as long as they use the same XDG API

            – mhall119
            Jan 29 '13 at 14:26




            3




            3





            I was asking for the replacement, not just the possibility.

            – VedVals
            Jan 29 '13 at 15:23





            I was asking for the replacement, not just the possibility.

            – VedVals
            Jan 29 '13 at 15:23













            @mhall119, I see, but is it possible to send notifications like how sound/brightness notifications do? I could’t find anything on the web.

            – AliNâ
            Jul 16 '13 at 1:40





            @mhall119, I see, but is it possible to send notifications like how sound/brightness notifications do? I could’t find anything on the web.

            – AliNâ
            Jul 16 '13 at 1:40




            1




            1





            @VedVals Yes, you can replace it, although it doesn't always look pretty. iirc, gnome-notification-daemon is one option.

            – Seth
            Aug 8 '14 at 17:10





            @VedVals Yes, you can replace it, although it doesn't always look pretty. iirc, gnome-notification-daemon is one option.

            – Seth
            Aug 8 '14 at 17:10













            1














            My suggestion is to use yad, which is a fork of Zenity.



            Installation:



            sudo apt install yad


            If not available on your version run before:



            sudo add-apt-repository ppa:webupd8team/y-ppa-manager
            sudo apt-get update


            Learn about yad:



            man yad


            It is not an ideal solution, but yad is powerful and flexible, and it has a time-out option.






            share|improve this answer

























            • yad doesn't work the way I want. It gives windowed notifications. It is great but I want something like notify-send, not windowed. Also, the system crashed on trying to get a notification bubble.

              – VedVals
              Jan 27 '13 at 17:55















            1














            My suggestion is to use yad, which is a fork of Zenity.



            Installation:



            sudo apt install yad


            If not available on your version run before:



            sudo add-apt-repository ppa:webupd8team/y-ppa-manager
            sudo apt-get update


            Learn about yad:



            man yad


            It is not an ideal solution, but yad is powerful and flexible, and it has a time-out option.






            share|improve this answer

























            • yad doesn't work the way I want. It gives windowed notifications. It is great but I want something like notify-send, not windowed. Also, the system crashed on trying to get a notification bubble.

              – VedVals
              Jan 27 '13 at 17:55













            1












            1








            1







            My suggestion is to use yad, which is a fork of Zenity.



            Installation:



            sudo apt install yad


            If not available on your version run before:



            sudo add-apt-repository ppa:webupd8team/y-ppa-manager
            sudo apt-get update


            Learn about yad:



            man yad


            It is not an ideal solution, but yad is powerful and flexible, and it has a time-out option.






            share|improve this answer















            My suggestion is to use yad, which is a fork of Zenity.



            Installation:



            sudo apt install yad


            If not available on your version run before:



            sudo add-apt-repository ppa:webupd8team/y-ppa-manager
            sudo apt-get update


            Learn about yad:



            man yad


            It is not an ideal solution, but yad is powerful and flexible, and it has a time-out option.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 1 hour ago









            Pablo Bianchi

            2,92521535




            2,92521535










            answered Jan 27 '13 at 17:06









            Paddy LandauPaddy Landau

            3,14922445




            3,14922445












            • yad doesn't work the way I want. It gives windowed notifications. It is great but I want something like notify-send, not windowed. Also, the system crashed on trying to get a notification bubble.

              – VedVals
              Jan 27 '13 at 17:55

















            • yad doesn't work the way I want. It gives windowed notifications. It is great but I want something like notify-send, not windowed. Also, the system crashed on trying to get a notification bubble.

              – VedVals
              Jan 27 '13 at 17:55
















            yad doesn't work the way I want. It gives windowed notifications. It is great but I want something like notify-send, not windowed. Also, the system crashed on trying to get a notification bubble.

            – VedVals
            Jan 27 '13 at 17:55





            yad doesn't work the way I want. It gives windowed notifications. It is great but I want something like notify-send, not windowed. Also, the system crashed on trying to get a notification bubble.

            – VedVals
            Jan 27 '13 at 17:55











            1














            I took a look at yad as suggested by Paddy Landau. It allowed me to display a notification without a window border, that did not steal focus, and that automatically closed after 1 second. I could not find a way to change the window background color, but I could change the text color and size using Pango Text Attribute Markup Language. The following script increases volume by 3% then displays the current volume level using yad:



            #!/bin/bash

            amixer -q -D pulse sset Master 3%+
            VOLUME=`awk -F"[][]" '/Front Left.*Playback/ print $2 ' <(amixer -D pulse sget Master)`
            yad --timeout 1 --skip-taskbar --center --no-buttons --text="Volume:" --width=200 --text-align=center --undecorated --text="<span color="#ffffff" bgcolor="#000000" font_size="large" font_weight="heavy"> Volume: $VOLUME </span>"





            share|improve this answer





























              1














              I took a look at yad as suggested by Paddy Landau. It allowed me to display a notification without a window border, that did not steal focus, and that automatically closed after 1 second. I could not find a way to change the window background color, but I could change the text color and size using Pango Text Attribute Markup Language. The following script increases volume by 3% then displays the current volume level using yad:



              #!/bin/bash

              amixer -q -D pulse sset Master 3%+
              VOLUME=`awk -F"[][]" '/Front Left.*Playback/ print $2 ' <(amixer -D pulse sget Master)`
              yad --timeout 1 --skip-taskbar --center --no-buttons --text="Volume:" --width=200 --text-align=center --undecorated --text="<span color="#ffffff" bgcolor="#000000" font_size="large" font_weight="heavy"> Volume: $VOLUME </span>"





              share|improve this answer



























                1












                1








                1







                I took a look at yad as suggested by Paddy Landau. It allowed me to display a notification without a window border, that did not steal focus, and that automatically closed after 1 second. I could not find a way to change the window background color, but I could change the text color and size using Pango Text Attribute Markup Language. The following script increases volume by 3% then displays the current volume level using yad:



                #!/bin/bash

                amixer -q -D pulse sset Master 3%+
                VOLUME=`awk -F"[][]" '/Front Left.*Playback/ print $2 ' <(amixer -D pulse sget Master)`
                yad --timeout 1 --skip-taskbar --center --no-buttons --text="Volume:" --width=200 --text-align=center --undecorated --text="<span color="#ffffff" bgcolor="#000000" font_size="large" font_weight="heavy"> Volume: $VOLUME </span>"





                share|improve this answer















                I took a look at yad as suggested by Paddy Landau. It allowed me to display a notification without a window border, that did not steal focus, and that automatically closed after 1 second. I could not find a way to change the window background color, but I could change the text color and size using Pango Text Attribute Markup Language. The following script increases volume by 3% then displays the current volume level using yad:



                #!/bin/bash

                amixer -q -D pulse sset Master 3%+
                VOLUME=`awk -F"[][]" '/Front Left.*Playback/ print $2 ' <(amixer -D pulse sget Master)`
                yad --timeout 1 --skip-taskbar --center --no-buttons --text="Volume:" --width=200 --text-align=center --undecorated --text="<span color="#ffffff" bgcolor="#000000" font_size="large" font_weight="heavy"> Volume: $VOLUME </span>"






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 1 hour ago









                Pablo Bianchi

                2,92521535




                2,92521535










                answered Jun 15 '14 at 0:40









                calamaricalamari

                112




                112



























                    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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f248298%2fwhat-are-the-alternatives-for-notify-send%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

                    Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

                    Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

                    Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»