[SOLVED] No icon or progress bar with notify-osd-customizable

Hello,
I just reinstalled my system; I use a script to know my brightness and audio volume but I can't get it working anymore.
With this
notify-send 'Hello world!' -i dialog-information
I only get the text. If I try this to have a progress bar
notify-send 'Hello world!' -i dialog-information -h int:value:50
I just get a notification with 1px height.
I installed notify-osd-icons to have more icons, but it didn't help.
The arguements have changed?
Last edited by Dreamkey (2013-02-13 13:02:29)

Ok, I'm not sure if it's because of that, but I installed human-icon-theme and after a reboot, it worked.

Similar Messages

  • HT4623 My iphone is frozen with the apple icon and progress bar at 5% cannot update

    My iphone4 is frozen with the apple icon and progress bar at 5% cannot update

    Same issues here.
    iPhone 5 was fine until I restarted the device... now the screen flickers on and off (with the white Apple logo
    and frozen progress bar overlayed on the screen).
    When I try to restore, I get a "-1" error.
    Well I just looked over at the screen, and everything is now fine. No flickering, no logo... the screen looks normal.
    Hmmm...

  • My iPhone 4s is not switching on, I connected it to itunes thru my Windows 7 laptop and it says phone needs to be restored. I clicked okay and it started the process however the progress bar with the apple logo is on the screen, progressbar do not start

    My iPhone 4s is not switching on, I connected it to itunes thru my Windows 7 laptop and it says phone needs to be restored. I clicked okay and it started the process however the progress bar with the apple logo is on the screen, progress in the bar did not start yet after 5 hours. Some one please hep me.

    I did put it in DFU mode but its still not working, although everytime it shows your iphone needs to be restored. Kindly help.

  • How to use a progress bar with java mail?

    Hi, i'm new here.
    I want if someone can recommend me how to show a progress bar with java mail.
    Because, i send a message but the screen freeze, and the progress bar never appear, after the send progress finish.
    Thanks

    So why would the code we post be any different than the code in the tutorial? Why do you think our code would be easier to understand? The tutorial contains explanations about the code.
    Did you download the code and execute it? Did it work? Then customize the code to suit your situation. We can't give you the code because we don't know exactly what you are attempting to do. We don't know how you have changed to demo code so that it no longer works. Its up to you to compare your code with the demo code to see what the difference is.

  • Progress bar with Cancel button

    Hi Gurus,
    How to implement the Progressing bar with Cancel btn using the ScriptUI?, is it possible in script UI ?
    Thanks in advance.
    Regards,
    Imagine

    what i said is that you need to hava a reference to your thread ine the class that handle the progressBar.
    and in your Thread class you create a method like setCanceled(boolean b)...
    public MyThread extends Thread{
       private boolean canceled = false;
       public void setCanceled(boolean b){
          canceled = b;
       public void run(){
          while(!canceled){
            //do your stuff

  • JavaFX progress bar with glow effect.

    I am hoping someone can help me with this issue. I recently followed James Clarke example of a progress bar with glow effect and it helped with developing a progress bar for an application I was working on. But now, with the JavaFX sdk 1.2 update, the application does not fully work anymore. The progressbar.fx code is posted below:
    ProgressBar.fx code:
    import java.lang.Math;
    import java.lang.Object;
    import javafx.animation.Interpolator;
    import javafx.animation.Timeline;
    import javafx.scene.CustomNode;
    import javafx.scene.effect.GaussianBlur;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.paint.Color;
    import javafx.scene.paint.Paint;
    import javafx.scene.Scene;
    import javafx.scene.shape.Ellipse;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.text.TextOrigin;
    import javafx.stage.Stage;
    import javafx.scene.layout.Resizable;
    public class ProgressBar extends CustomNode, Resizable{
    public var min: Number;
    public var max: Number = 100.0;
    public var value: Number;
    public var background: Paint = Color.rgb(118,149,178);
    public var foreground: Paint = Color.rgb(216,219,225);
    public var font = bind Font{name: "Courier Bold Italic" size: height - borderWidth * 8};
    public var arcWidth: Number = 20;
    public var arcHeight: Number = 50;
    public var borderStroke: Color = Color.BLACK;
    public var borderWidth: Number = 1;
    public var fontPaint: Paint = Color.LIGHTGRAY;
    public var showPercentage = true;
    var progressText: Text;
    var backgroundText: Text;
    var progessBar: Rectangle;
    var range = bind Math.abs(max - min);
    var percentComplete: Number = bind if(max != 0) { (
    value - min) / max
    } // if
    else {0.0;} // else;
    var currentX = bind percentComplete * width;
    var blurX: Number = 30;
    var progressString: String = bind "%%{%.0f (percentComplete*100)}";
    var progressValue = bind "{%.2f value}";
    var progressHeight = bind height - borderWidth * 4;
    var blurAnim = Timeline {
    repeatCount: Timeline.INDEFINITE
    autoReverse: true
    keyFrames: [
    at(0s) { blurX => 0.0 }
    at(2s) { blurX =>
    currentX - progressHeight / 2 tween Interpolator.EASEBOTH }
    var playing = bind visible on replace{
    if(playing) {
    blurAnim.play();
    }else {
    blurAnim.stop();
    public override function create(): Node {
    return Group {
    content: [
    Rectangle { //background
    width: bind width
    height: bind height
    fill: bind background
    stroke: bind borderStroke
    strokeWidth: bind borderWidth
    arcWidth: bind arcWidth
    arcHeight: bind arcHeight
    cache: true
    backgroundText = Text { // Text over Background
    layoutX: bind (width - backgroundText.layoutBounds.width) / 2
    layoutY: bind (height - backgroundText.layoutBounds.height) / 2
    textOrigin: TextOrigin.TOP
    font: bind font
    fill: bind foreground
    content: bind if(showPercentage) progressString else progressValue
    cache: true
    Group {
    content: [
    progessBar = Rectangle { // Progress
    layoutX: bind borderWidth
    layoutY: bind borderWidth * 2
    width: bind currentX
    height: bind progressHeight
    fill: bind foreground
    arcWidth: bind arcWidth
    arcHeight: bind arcHeight
    Ellipse {
    centerX: bind blurX
    centerY: bind height / 2
    radiusX: bind progressHeight
    radiusY: bind progressHeight / 2
    fill: Color.rgb(255,255,255,.7)
    effect: GaussianBlur{ radius: 30
    Text { // Text Over Progress Bar, this has to be in progressBar coordinate space
    x: bind (width - backgroundText.layoutBounds.width) / 2
    y: bind (height - backgroundText.layoutBounds.height) / 2
    textOrigin: TextOrigin.TOP
    font: bind font
    fill: bind background
    content: bind if(showPercentage) progressString else progressValue
    clip: bind progessBar
    }, // Text
    ] // 2nd content
    } // 2nd Group
    ] // 1st content
    }; // 1st Group
    } // public override function create(): Node
    } // public abstract class ProgressBar extends CustomNode, Resizeable
    function run(args:String[]):Void {
    var stage: Stage = Stage {
         title: "Progress Bar"
    scene: Scene {
    width: 925
    height: 60
    content: ProgressBar {
         layoutX: 10
    layoutY: 10
    width: 890
    height: 35
    value: 80
    } // content: ProgressBar
    } // scene: Scene
    } // var stage: Stage = Stage
    } // function run(args:String[]):Void
    I use RESTful ws to get the progress of the billing run, which is the loadProgressdata() method in the main.fx, and everything was working fine until we did the javafx sdk 1.2 update. With the update in place, I recompiled the project and found that "Resizable" in
    the "public class ProgressBar extends CustomNode, Resizable" was throwing an error when the project was recompiled. I made some changes(mainly adding variables for height and width) but now when the program runs, the backing rectangle appears along with the
    percentage of billing progress, but the progress part(2nd rectangle) does not appear with the glow effect. I have read about using "getPrefWidth()" and "getPrefHeight()" methods, but not really sure how I would use them. I can't make the public class ProgressBar extends CustomNode, Resizable abstract as I need to instantiate in the Main.fx.
    Can anyone shed some light on what might need to be done to get this running correctly again. I don't need anyone the give me the exact code, but just to point me in the correct direction.

    Can you post your code again between "{ code} ... {code }" tags ? Some symbols are missing if copy/pasted.
    That said, your preferred width and height, simply return the width and height of your component. What I discovered recently is using LayoutInfo on controls to set the preferred width and height. These are the dimensions the surrounding container (VBox, HBox, Flow, ....) will use to arrange size and position of the enclosed components. So maybe you won't need Resizable any more. Simply fill in the layoutInfo property.
    Edited by: Java.Artisan on Jun 26, 2009 11:25 AM
    Edited by: Java.Artisan on Jun 26, 2009 11:26 AM

  • Horizontal progress bar with interpolat​e color

    Looking for a control "horizontal progress bar" with interpolate color and markers like control "meter"

    If I get this right - you are looking for a progress bar that changes colour as the number changes. You can set the colour of the progress bar using property nodes. I have included a VI here that I used for testing this. This VI changes the colour from green to red as the progress bar advances. Colours are stored as 3 bytes: Red, Green and Blue.
    I hope that this helps.
    Rob
    Attachments:
    Changing_Progress_Bar.vi ‏27 KB

  • [Solved] Notify-osd-customizable activate "bubble-close-on-click"

    Hello again. I installed notify-osd-customizable in Xfce and it works fine. But, I can't find a way to close the notification bubble when clicking it.
    I don't like this, so I'm using xfce-notifyd right now, which have that option available for default.
    I know in Ubuntu you can do this, because I read about it and saw images about it. But, the Arch linux build of Notify-osd-customizable doesn't have this option available.
    Here are two screenshots of the notify-osd-customizable graphical configuration:
    Ubuntu version:
    http://i.stack.imgur.com/4WJZv.png
    Arch Linux version (not the original, but looks exactly like this):
    http://i.imgur.com/uZZK73S.png?1
    As you can see, Ubuntu's version does have some more options available, probably because they have a newer version of the same program. Between those options it is "Close bubble on click"
    I tried configuring this program, manually, via text file, but it didn't work. What I did was including this line at the end of the configuration file:
    bubble-close-on-click = 1
    and also tried with:
    bubble-close-on-click = 0
    But had no luck.
    I also tried enabling composition, but it didn't work either.
    Do you know what am I doing wrong? or if there's a solution to this?
    I have read the commentaries in the AUR page of notify-osd-customizable and it seems someone could make it work. https://aur.archlinux.org/packages/noti … tomizable/
    Regards
    Solution:
    I was editing the wrong configuration file. So, to make the bubbles close on click you have to edit /home/joaco/notify-osd and add this line at the end:
    bubble-close-on-click = 1
    That's all, but it only works if composite is activated.
    Anyway, I didn't stay with notify-osd, because it doesn't stack notifications.
    Last edited by joacoej (2015-05-17 04:37:53)

    jasonwryan wrote:
    joacoej wrote:
    jasonwryan wrote:Stop posting oversized images: read the Forum Etiquette and only post thumbnails https://wiki.archlinux.org/index.php/Fo … s_and_code
    Ok, which is the wright proportion then?
    It's explicitly stated in the link I posted...
    That proportion (250x250) is too little, noone will read anything smaller than 640x356, because it gets distorted. That's the smalller I can resize them, without them being unreadable and they don't occupy a lot of space, so I don't see the problem.
    jasonwryan wrote:
    PD: I think the rezising should be done automatically like in any webpage. You can't expect everyone to download an image from the internet just to resize it an upload it again.
    Like automatically in what web page? Use `convert...`
    Like disqus, facebook, etc, you can upload an image with a big resolution and they just convert it
    Last edited by joacoej (2015-05-14 01:49:35)

  • Notify-osd-customizable and awesome conflict

    I was trying to install the notify-osd-customizable package from aur, but I'm running in a conflict because both packages "provides" notification-daemon.
    I don't know how to deal when two packages provides the same package. I've read the pacman man and wiki, but I haven't being able to solve the problem =/
    Any help/feedback is welcome :)

    anonymous_user wrote:
    If you don't want to wait for ABS to be updated, you can just download the files and PKGBUILD:
    https://projects.archlinux.org/svntogit … es/awesome
    Thanks to point it out. If you use yaourt,
    yaourt -G awesome
    do the work (pretty handy, even if you don't use it on an everyday basis).
    ZekeSulastin wrote:
    MOPSTER wrote:Since awesome provides a notification module which is optional, it doesn't need the provides line.
    Actually, it kinda does - consider why both awesome and notify-osd-* provide the metapackage notification-daemon; if it didn't provide that, you'd have to edit the PKGBUILD to provide it if you just wanted to use awesome's built-in module.
    It's kinda damned-if-you-do, damned-if-you-don't, unless the maintainer breaks the upstream package and provides naughty as a separate package - maybe something to bug report?
    {edit}I feature-requested it - https://bugs.archlinux.org/task/29874{/edit}
    Thanks, I'm following the 'bug' now, and I -obviously- voted

  • Black screen/progress bar with Yosemite startup

    Since installing Yosemite on my relatively new imac, when I boot up i get a black screen with the Apple logo and a progress bar, which takes about 90 seconds to load. I've tried disc first aid, verify/repair permissions etc , done a new install from my backup disc but it still persists. is this now the way of the yosemite world?
    Thanks
    Bruce

    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear and again when you log in. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don’t do them all at once.
    Safe Mode - About
    Safe Mode - Yosemite

  • TS3694 hi i recently updated into ios 7.0.4 now i want to fully restore my ipad to resell but when i restore it it got stuck with apple logo and progress bar with 45% completed as firware file is downloaded using ipad 4 wifi itunes 11.3.8

    hi i rescently updated my ipad 4 in ios 7.0.4 and for resell purpose i want to restore my ipad via itunes but it got stuck at apple logo and progress bar of 45% completed i tried it 50 times but it stuck on that exact point for hours i cant able to restore it and had no errors it just like freezes at one point i also uses dfu mode but got stuck at same problem using windows 7 32 bits itunes 11.3.8 ipad 4 wifi please help

    My iPhone 5 wouldn't start after I turned it off a few minutes after writing this. It went into recovery mode and I had no choice but to connect to iTunes on PC and restore.
    I restored to factory setting first, just to validate my phone was okay. For a second consecutive iOS update, the  iPhone 5 did not update smoothly while connected to PC and iTunes - I had to retry two times before the progress bar for the update showed. (The exact same problem with the restart occured when I updated to 7.0.4.)
    The good news is that I was ultimately able to restore the iPhone 5 to factory settings while running iOS 7.0.6. I did have a backup from about a month ago lying around and was able to successfully restore with that as well, so the damage done is almost negligible since I had my contacts, notes, mail, etc. backed up to iCloud.
    Once I completed both restores, the sync with iTunes worked fine.

  • Minimize to Icon in task bar with shell32.dll

    is it possible to minimize a lv.exe file to the task bar with shell32.dll
    if it is possible please post an example here.
    labview 7.1
    thanks
    helmuth

    chilly charly wrote:
    This functionnality is offered by the LVWutil32 library. See here
    Edit : after reading Tst reply, I'm not sure I understood correctly the question
    Message Edité par chilly charly le 05-21-2006 11:34 AM
    LabVIEW
    windows get minimized to the taskbar automatically when you allow them
    to be minimized and the user clicks the third icon from the top right,
    or you can do it programmatically in newer LabVIEW versions by setting
    the minimzed state. What this guy meant was that he wants to minimize
    to the system tray which is a very different thing than the taskbar ;-)
    I answered with two possible Toolkits in another thread to do this.
    Doing it yourself with shell32 functionality is rather thirty work
    since it involves callback functions and quite some infrastructure
    around that to really work well. Nothing for someone not quite seasoned
    in C programming.
    Rolf Kalbermatter
    Message Edited by rolfk on 05-22-2006 11:04 AM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Since trying to load latest update on Ipad it only boots to Apple Icon and progress bar seems stuck??

    since latest update it tried to run and recieved error.  Rebooted and it gets stuck on Apple icon and appears as though the progress bar trying to load but it just hangs there.  Can't do anything???? 
    HELP

    I went to the Apple store, the salesman held the power button andthe main button down for five seconds or so, and it came back to life.  The ironic thing is that I already tried that before going....Anyway, the iPod went into recovery mode, where I had to basically plug it back into iTunes, confirm the new update was downloaded properly, and then I had to wipe it clean in recovery ( or whatever you call it).  I put all my music back on it and now it works fine......good luck

  • Scale progress bar with Event.RESIZE

    Hi all,
    I am trying to create a preloader bar that goes across the whole stage. The code below works fine, except that I would also like to be able to resize the stage and have the preloader bar recognize this and change it's scaleX to accomodate the larger or smaller browser size. Does this make sense? I'm having trouble with the equation to adjust the preloader bar scaleX within the "onResizeStageLoad" function.
    function PL_LOADING(event:ProgressEvent):void {
    var pcent:Number=event.bytesLoaded/event.bytesTotal*100;
    //Stretch the bar
    lbar.scaleX=pcent/100;
    if(pcent >=100){
    this.gotoAndStop(2);
    stage.removeEventListener(Event.RESIZE, onResizeStageLoad);
    stage.addEventListener(Event.RESIZE, onResizeStageLoad);
    function onResizeStageLoad(evt:Event):void{
    What goes in here?
    Thanks!

    Just to close this out. You need to submit the form from within the onComplete javascript. The prior version of the progress bar 'automatically' called submitFomr() when the progress bar was 100%. That is no longer true. You must explicitly call the submitForm() javascript in onComplete. Don't know if this is a bug in the new version or not? I recommend that the submitForm() be made the default function for onComplete is none is specified in the component properties.

  • Progress bar with install screen.

    Hi all,
    On my app I need a progress bar when I the app install some RMS records. Because of the app has near a milliom of records, this install is so longer, and I t's better show the progress of it with an bar :).
    How it's possible do it?
    Kind regards.

    In such case i recomend writing your own LoadingCanvas or something like that (You draw a kind of rectangle which size is connected to current progress). Animating this canvas while conducting another task is a different issue. In my soft I needed to view a progress bar while downloading images and so on from net. I achived it by running one separete thread for the connection and lunching a timerTask for the canvas redraw events. In my case it worked fine almost on every device but ned Nokia E series phones had some problems in memory management of 2 paralel task so i had to remove this form my app becouse it caused instability of application.
    Regards
    mchmiel

Maybe you are looking for

  • How to setup multiple DNS zones in a single domain

    We have a small charter school running a Mac Open Directory network on a single subnet with a single registered FQDN for its internal domain. We are about to open a second school within a wing of the same building which will also be on a Mac Open Dir

  • My "new improved" itunes seems to be missing some key components.  Where is the file button and the others in the upper left corner.

    There is no file or other things in the upper left corner.  Not even a place to upgrade in the future.  I talked to a guy in support today and I told him I was missing that stuff and he helped me navigate better but didn't really help me with the mis

  • Setting max length of the field when using Context Model Node

    I have created a model using Import Adaptive Web Service model option (a web service was a wrapper around SAP BAPI function module). There were no dictionary types created in the Local dictionary as a result of import. I have mapped the context of th

  • Field in a Generic Datasource

    Hi All, I have created a Generic data source on a SAP table wherein I have a field called Business Area. But when I upload the data from the R/3 table in my cube I want the filed to be Division. That is I want data not be loaded Business area wise bu

  • Writing to spreadshee​t

    I have an analogue input being displayed on a graph, but would like to record the data to a spreadsheet. If possible, I'd prefer it so that when a button is pressed, 20 results were recorded ,one per second, but i can't seem to get it working? I can