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
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 :
- Expiration time.
- Size customizations(size of the bubble).
- Location modifications(location of the bubble).
- 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
add a comment |
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 :
- Expiration time.
- Size customizations(size of the bubble).
- Location modifications(location of the bubble).
- 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
add a comment |
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 :
- Expiration time.
- Size customizations(size of the bubble).
- Location modifications(location of the bubble).
- 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
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 :
- Expiration time.
- Size customizations(size of the bubble).
- Location modifications(location of the bubble).
- 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
application-development notification development alternative
edited Jan 27 '13 at 17:00
Seth♦
34.9k27112165
34.9k27112165
asked Jan 27 '13 at 16:57
VedValsVedVals
1,60162543
1,60162543
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
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.
1
Cannotify-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
add a comment |
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.
yad
doesn't work the way I want. It gives windowed notifications. It is great but I want something likenotify-send
, not windowed. Also, the system crashed on trying to get a notification bubble.
– VedVals
Jan 27 '13 at 17:55
add a comment |
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>"
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%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
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.
1
Cannotify-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
add a comment |
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.
1
Cannotify-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
add a comment |
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.
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.
answered Jan 28 '13 at 13:54
mhall119mhall119
4,7791124
4,7791124
1
Cannotify-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
add a comment |
1
Cannotify-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
add a comment |
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.
yad
doesn't work the way I want. It gives windowed notifications. It is great but I want something likenotify-send
, not windowed. Also, the system crashed on trying to get a notification bubble.
– VedVals
Jan 27 '13 at 17:55
add a comment |
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.
yad
doesn't work the way I want. It gives windowed notifications. It is great but I want something likenotify-send
, not windowed. Also, the system crashed on trying to get a notification bubble.
– VedVals
Jan 27 '13 at 17:55
add a comment |
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.
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.
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 likenotify-send
, not windowed. Also, the system crashed on trying to get a notification bubble.
– VedVals
Jan 27 '13 at 17:55
add a comment |
yad
doesn't work the way I want. It gives windowed notifications. It is great but I want something likenotify-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
add a comment |
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>"
add a comment |
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>"
add a comment |
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>"
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>"
edited 1 hour ago
Pablo Bianchi
2,92521535
2,92521535
answered Jun 15 '14 at 0:40
calamaricalamari
112
112
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.
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%2f248298%2fwhat-are-the-alternatives-for-notify-send%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