[SOLVED] Conky Mail Notification using a Bash Script

Hi there, I have conky piped into a dzen panel, and I'm trying to get conky to echo my unread mail count whenever the # is >0. It's just not working for me, and I was wondering what I did incorrectly.
I have the 3 following files.
~/.conkyrc
background yes
out_to_console yes
out_to_x no
update_interval 1
TEXT
${execi 60 /home/nil/mail-notify}
~/mail-notify
#! /bin/bash
gmail=$(python /home/nil/gmail.py)
if [ $gmail -gt 0 ]; then
echo "$gmail"
fi
~/gmail.py
#!/usr/bin/env python
# This is a script that checkes the gmail unread count.
from urllib.request import FancyURLopener
username = 'myusername'
password = 'mypasswd'
url = 'https://%s:%[email protected]/mail/feed/atom' % (username, password)
opener = FancyURLopener()
page = opener.open(url)
contents = page.read().decode('utf-8')
ifrom = contents.index('<fullcount>') + 11
ito = contents.index('</fullcount>')
unread = contents[ifrom:ito]
print(unread)
gmail.py was taken from the archwiki page, and I've confirmed it to be working (I censored my user name and password here). What gmail.py does is output an integer representing your unread mail count.
Similarly, Conky's code and the mail-notify script run fine. If I rewrite mail-notify's conditional to be "if [ 1 -gt 0 ]; then", then it will successfully output the unread mail count. Hence the problem lies in the scripting of the if condition. mail-notify should run gmail.py, if the output count is >0, then it should echo that number. Else it does nothing. Any help is appreciated!
Last edited by nil (2013-08-19 23:40:14)

jasonwryan wrote:Presumably the script is called gmail.py, not gmail1.py?
Oops, sorry, that was a typo when writing up this post.

Similar Messages

  • [solved] Running a command in background (bash script)

    Salut,
    as netcfg2 does not work with my wireless connection, I have to set up the connection manually. For not having to type in the commands every time, I created a bash script.
    #!/bin/bash
    iwconfig wlan0 mode managed essid mynetwork channel 6
    ifconfig wlan0 up
    wpa_supplicant -D wext -i wlan0 -c /etc/wpa_supplicant.conf -dddd &
    dhcpd wlan0
    This works fine till the wpa_supplicant line. wpa_supplicant is not started in the background (as I thought, the ampersand at the end of the line would.
    So how can I get wpa_supplicant run in the background?
    Thanks in advance,
    Stefan
    Last edited by vbtricks (2008-05-11 09:13:36)

    Ramses de Norre wrote:How do you know it isn't? What exactly does happen?
    The script does not return to the user-prompt. Is an ampersand at the end of the line the correct solution, or are you unsure yourself?
    bender02 wrote:On thing is that even if it starts, it does take it a couple of seconds to connect, so it's probably not very good to run dhcpcd right after wpa_supplicant. Another thing is that you probably have a typo up there, shouldn't it be 'dhcpcd' instead of 'dhcpd'?
    Well, as the wpa_supplication command is not really run in the background the script did never execute the dhcpcd command. After having solved the above, correcting the spell-mistake will be a smaller problem. Even calling the dhcpcd command myself would be no unworkable way, the open root-shell (as I have to use another as the one calling the script is blocked) is a far greater problem...

  • Mail Notification using resolver

    Hi Everyone,
    I am trying to send mail notification to role's email id using notification resolver. If any one has a solution please let me know.
    Regards,

    Kevin,
    I was not able to find any relevant api, thts the reason I am checking with you ppl.
    Regards,
    Pavan

  • E-mail notification using powershell script in 365

    I need a e-mail script that works using 365. Here is what I have so far and I cant get it to work.
    Function EMAIL{
    Param(
    $emailSmtpServer = "XXXXXXXXXXX",
    $emailSmtpServerPort = 587,
    $emailSmtpUser = "[email protected]",
    $emailSmtpPass = "Password",
    $emailFrom = "[email protected]",
    $emailTo = "[email protected]",
    $emailAttachment = 'XXXXXXXXXX',
    $emailSubject = "This is a test" ,
    $emailBody = "How does this look?"
    Process{
    $emailMessage = New-Object System.Net.Mail.MailMessage( $emailFrom , $emailTo )
    $emailMessage.Subject = $emailSubject
    $emailMessage.Attachments.add($emailAttachment)
    $emailMessage.IsBodyHtml = $true
    $emailMessage.Body = $emailBody
    $SMTPClient = New-Object System.Net.Mail.SmtpClient( $emailSmtpServer , $emailSmtpServerPort )
    $SMTPClient.EnableSsl = $true
    $SMTPClient.Credentials = New-Object System.Net.NetworkCredential( $emailSmtpUser , $emailSmtpPass );
    $SMTPClient.Send( $emailMessage )

    I'm not getting an error message, I don't get anything back.
    yes I have tried send-mailmessage I cant seem to get it to work either. Here is what I get with send-mailmessage.
    PS C:\Users\XXXX> Send-MailMessage -From [email protected] -Subject "This is a test" -To [email protected] -Body Testing -Port 587 -SmtpServer XXXXX
    Send-MailMessage : The SMTP server requires a secure connection or the client was not authenticated. The server
    response was: 5.7.1 Client was not authenticated
    At line:1 char:1
    + Send-MailMessage -From [email protected] -Subject "This is a test" -To XXX ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidOperation: (System.Net.Mail.SmtpClient:SmtpClient) [Send-MailMessage], SmtpExcept
    ion
    + FullyQualifiedErrorId : SmtpException,Microsoft.PowerShell.Commands.SendMailMessage

  • [SOLVED] FFMPEG appears to be trashing bash script variables

    Hi,
    I have a directory containg MP4 files which were downloaded via youtube-dl upon which I want to extract audio using FFMPEG.
    I am using the usual find/while/read/do/done loop to process each file individually. The files were downloaded using Youtube-dl (invoked with --restrict-filenames) so the youtube video ID is recorded within the filename which can then be used to obtain the video title (ie to tag the audio with once extracted, ie ID3).
    Without FFMPEG the loop works as expected as can be seen when using echo, but as soon as I introduce FFMPEG into the loop, no such file or directory errors are reported because the filenames passed to FFMPEG are nonsense and appear to have been trashed, for instance, characters are stripped from the start or end of the filename.
    find . -name '*.mp4' | while read FILE
    do
    FNAME=${FILE%.mp4}
    FID=${FNAME: -11}
    FTITLE=${FNAME%-$FID}
    TITLE=$(youtube-dl --get-title $FID)
    # MP3="${FNAME}.mp3"
    AAC="${FNAME}.aac"
    ffmpeg -i $FILE -vn -acodec copy $AAC
    done
    Frequently green text like so reams down the terminal:
    stream #1:
    keyframe=1
    duration=0.023
    dts=355.033 pts=355.033
    size=252
    Swiftly followed by:
    00000000 21 0a 4f ff ff e0 3f fe a2 c6 b1 41 31 a0 88 41 !.O...?....A1..A
    00000010 28 3e 00 03 d2 15 25 4a 92 17 40 0b e4 f5 4c e5 (>....%[email protected].
    00000020 af 56 45 aa 31 0c eb 87 45 ac 26 54 8a ed c9 b4 .VE.1...E.&T....
    00000030 94 98 ca a8 03 34 aa bf 04 51 38 12 c9 43 80 62 .....4...Q8..C.b
    00000040 5b 16 94 99 20 18 9e cd 55 d0 6c 15 38 13 ce cc [... ...U.l.8...
    00000050 d4 2e 80 3b 10 e9 07 70 bc 23 8c 8c 84 96 8a 38 ...;...p.#.....8
    00000060 29 63 8d 87 75 5e 66 dc fa de 7f 4e 70 b2 44 09 )c..u^f....Np.D.
    00000070 39 c7 30 50 78 2b 6a b0 48 90 ba c4 14 c4 41 5c 9.0Px+j.H.....A\
    00000080 b6 3c 64 38 4d 92 3a b6 d1 01 d3 99 86 d5 54 23 .<d8M.:.......T#
    00000090 2a c4 13 49 61 50 b7 d0 3c 1e 2b 4b 90 c4 32 ae *..IaP..<.+K..2.
    000000a0 bc 6b 57 a6 de df 19 53 8e 38 66 d1 c4 fc a4 d5 .kW....S.8f.....
    000000b0 f9 6f a9 2d 20 6c eb 29 1e 1a ef 96 a6 84 82 63 .o.- l.).......c
    000000c0 0a cc 75 82 14 b4 08 09 fa 11 b8 0d e7 11 80 84 ..u.............
    000000d0 20 31 18 00 05 2a 54 af 46 ac 08 79 b9 a8 11 70 1...*T.F..y...p
    000000e0 f5 c0 2f 88 4b 27 7c a4 fd f9 f1 e4 77 53 c5 4a ../.K'|.....wS.J
    000000f0 d7 74 d1 02 80 46 40 08 16 a1 e7 .t...F@....
    It doesn't matter if the filenames originate from find or redirected from the contents of a text file. Anyone have any suggestions for workarounds?
    Last edited by jwm-art (2014-05-27 21:39:39)

    Self contained example:
    #!/bin/bash
    while read URL
    do
    echo -n "Downloading video from ${URL}... "
    youtube-dl --restrict-filenames "${URL}" --quiet
    if test $? -eq 0; then
    echo "Ok"
    else
    echo "FAIL"
    echo "Aborting..."
    exit
    fi
    done <<YT_URLS
    https://www.youtube.com/watch?v=XqdYnxv01yM
    https://www.youtube.com/watch?v=lX_o5t2YoUE
    https://www.youtube.com/watch?v=V9sI6VEDE5M
    YT_URLS
    find . -name '*.mp4' | while read -r FILE
    do
    echo "-----------------------------------------"
    echo -n "Converting ${FILE} to MP3... "
    MP3="${FILE%.mp4}.mp3"
    echo "${MP3}"
    ffmpeg -loglevel warning -y -i "${FILE}" "${MP3}"
    if test $? -eq 0; then
    echo "Ok"
    else
    echo "FAIL"
    echo "Abortingm..."
    exit
    fi
    echo
    done
    Here's the output on my system:
    $ ../ffmpeg_test
    Downloading video from https://www.youtube.com/watch?v=XqdYnxv01yM... Ok
    Downloading video from https://www.youtube.com/watch?v=lX_o5t2YoUE... Ok
    Downloading video from https://www.youtube.com/watch?v=V9sI6VEDE5M... Ok
    Converting ./Rabbit_City_White_Lable_-_Beyond_Control-lX_o5t2YoUE.mp4 to MP3... ./Rabbit_City_White_Lable_-_Beyond_Control-lX_o5t2YoUE.mp3
    Enter command: <target>|all <time>|-1 <command>[ <argument>]
    Parse error, at least 3 arguments were expected, only 1 given in string 'osmo_Dibs_-_Xultation-V9sI6VEDE5M.mp4'
    debug=1
    debug=2 1984kB time=00:02:06.95 bitrate= 128.0kbits/s
    error parsing debug value
    debug=0
    [output stream 0:0 @ 0xd90b60] EOF on sink link output stream 0:0:default.
    No more output streams to write to, finishing.
    [libmp3lame @ 0xc71de0] Trying to remove 815 more samples than there are in the queue
    size= 6971kB time=00:07:26.12 bitrate= 128.0kbits/s
    video:0kB audio:6971kB subtitle:0 data:0 global headers:0kB muxing overhead 0.004483%
    19212 frames successfully decoded, 0 decoding errors
    [AVIOContext @ 0xd9ff60] Statistics: 2 seeks, 17081 writeouts
    [AVIOContext @ 0xc77200] Statistics: 7082450 bytes read, 176 seeks
    Ok
    The first MP4 file found is converted, but alongside strange unexplained output, and then it just stops. In the first iteration of the second loop how does FFMPEG get hold of the second filename (incomplete, missing first character)? What is the "Enter command" all about? Its all very weird.
    Last edited by jwm-art (2014-05-27 20:17:57)

  • [Solved]conky autostart link using kdemod4.3x

    I followed the arch wiki to install conky and the config works fine.  The wiki says to autostart conky $ ln -s usr/bin/conky ~/.kde/share/autostart/conkylink. But I have .kdemod4 not .kde in my home directory.  Trying the above link with ''.kdemod4" instead of ".kde" gave  creating link /home/user/ ~/.kdemod4/share/autostart/conkylink  "no such file or directory"
       Looking at ~/.kdemod4>ls -aF shows ./ ../ Autostart/ cache-myhost@ share/ socket-myhost@ tmp-myhost@.  Autostart is an empty dir. $ cd share shows apps/ config/ and kde4/ .
       How do I create the correct conky link using kdemod4.3 to autostart conky?  Or how to do same with SystemSettings > Advanced.>Autostart in KDE . Thanx:)
    Last edited by lestoil (2009-08-17 21:10:37)

    Following another thread by 'pencuse' on 2008-05-12 under Desktop Environments suggested cd to ~/kdemod4/Autostart then ln -s /usr/bin/conky conky.  Now @conky shows under ~/kdemod4/Autostart:).
    Last edited by lestoil (2009-08-17 21:15:12)

  • ???? how to launch bash script in cron ????

    with help from people in this forum, I successfully debugged the syntax in a shell script I wrote (my syntactical faux pas had to do with sending a multi-line mail message from a bash script).
    I can manually launch my script from Terminal's command line, and it works perfectly (well, at least it does exactly what I told it to do:). I try to launch it via cron, and it doesn't appear to ever launch.
    In /var/cron/tabs/root, the pertinent line of text reads:
    00 22 * * * /usr/local/customShellScripts/script.sh
    so it is supposed to launch daily at 10PM.
    Other jobs listed in /var/cron/tabs/root do run, because I get emails to my postfix admin account saying that they do. However, none of those other jobs are shell scripts; they are stuff like:
    24 06 * * 5 /usr/sbin/diskutil verifyVolume /
    The directory listing for /var/cron/tabs/root reads:
    $ ls /var/cron/tabs
    total 4
    drwxr-xr-x 3 root wheel 102 Mar 25 18:53:28 2006 .
    drwxr-xr-x 3 root wheel 102 Mar 20 17:13:47 2005 ..
    -rw-r--r-- 1 root wheel 1040 Mar 31 20:28:10 2006 root
    The directory listing for script.sh reads:
    $ ls /usr/local/customShellScripts/
    total 24
    drwxr-xr-x 6 root wheel 204 Mar 31 18:31:27 2006 .
    drwxr-xr-x 11 root wheel 374 Mar 5 12:26:23 2006 ..
    -rw-r--r-- 1 root wheel 6148 Feb 4 14:13:22 2006 .DS_Store
    -rwxr-xr-x 1 root wheel 8058 Mar 31 20:27:50 2006 script.sh
    for debug, the first two lines of script.sh read:
    #!/bin/sh
    /usr/bin/touch /foo
    but the file /foo never gets created. I tried using just "touch /foo" and that didn't work either.
    Also, since the script has a lot of calls to "echo," "expr," "date," "cut," "awk," etc., if I ever get cron to execute the script past the shebang line, do I have to preface all those calls with their full path? Or can I do something like in the old /etc/crontab file, where they defined a path variable up front
    PATH=/etc:/bin:/sbin:/usr/bin:/usr/sbin
    and the script will be smart enough to look in those directories for the appropriate executables?
    But, getting back to the first problem, I am obviously overlooking something very basic, which is not surprising since I'm self-taught (and I guess, Apple Unix Discussions forum taught) at this unix thing and shell scripting. So, can anybody bail me out here...again?
    2001 Quicksilver G4   Mac OS X (10.4.5)  

    Hey Reese
    You bailed me out, dude! Apparently, my difficulties stemmed from me trying to directly edit /var/cron/tabs/root with pico. Never seemed to bother the other stuff, but it did this time. I am totally inept with vi, the default editor for crontab -e, which is why I had cheated before, and directly edited the /var/cron/tabs/root, el.al., so I had to find out how to
    export EDITOR='pico'
    in my .bashrc
    After having done that, no problem, except for a latent programming logic bug that has reared its ugly head (my script is doing some date manipulation with today's and yesterday's date, and my script crashed and burned on the month change and with stuff related to single-digit date sequence numbers <10).
    But, hey, I learned how to reset my default editor, so as to make life easier for me when it comes time to dorking with crontab files, and I learned that when the crontab file says "DO NOT EDIT THIS FILE - edit the master and reinstall," it means it!
    Thanx for the troubleshooting hint.

  • Automated report email notification using SCCM 2012

    For SCCM mail notification using Office365 exchange.
    Is smtp rely required.. Please suggest and provide link 

    duplicate thread.you have also asked the same question here http://social.technet.microsoft.com/Forums/systemcenter/en-US/cccd6760-0416-4fed-b5df-d19fac00035f/automated-sccm-report-send-to-email-addresssccm-2012?forum=configmgrgeneral#0e84de61-c872-44fe-8544-f6b39450a44d
    Eswar Koneti | Configmgr blog:
    www.eskonr.com | Linkedin: Eswar Koneti
    | Twitter: Eskonr

  • Bash script to insert item in a alphabetical list

    I would like to use a bash script to insert a new "source" file into a list of sources which occurs within another file.
    The file in question is quite long and contains many other things. However the list of sources abides by the format below.
    [snip]
    SOURCES = \
    _add_datasource_.m \
    _add_line_series_.m \
    ylabel.m \
    ylim.m \
    zlabel.m \
    zlim.m
    [snip]
    How might I insert a new source file in alphabetical order. I'm assuming there is a fairly simple script to do such.
    TiA

    #!/usr/bin/env bash
    if [[ $# != 1 ]]; then
    echo 1>&2 "Usage: ${0##*/} fileto_insert_inSOURCE"
    exit 1
    fi
    MAKEFILE=Makefile.in
    TMP=/tmp/tmp.$$
    awk -v new="$1" '
    /^SOURCES =/ { in_src = 1 }
    in_src && ! done && $1 > new {
    # New file goes here
    printf(" %s \
    ", new)
    in_src = 0
    done = 1
    in_src && ! done && ! /\$/ {
    # New file must go after the last entry.
    # Put  on old last entry.
    printf("%s \
    ", $0)
    # replace current $0 with the new file.
    $0 = sprintf(" %s
    ", new)
    done = 1
    ! /\$/ { in_src = 0 } # NOT in SOURCE
    { print } # print current line
    ' $MAKEFILE >$TMP
    mv $TMP $MAKEFILE

  • Mail notification sticks at "loading" after 8.2

    When I get an incoming email the on screen notification sticks at loading..and stays there...I can access the message if I open it but very annoying..anyone else/fix?

    Not directly, unfortunately. Some posts on the Pebble reddit (where others are experiencing the same problems) suggest that it's an 8.2 bug since downgrading to 8.1.3 fixes the issue and the 8.3 beta is working fine as well. Since I'm receiving text and phone notifications, I solved my mail notification issue by switching to the Gmail app until either the bug (if that's what it is) is fixed or 8.3 comes out.

  • SQLPlus output within bash script

    Hey everyone, I wasn't sure if this should go here or in the SQL forum or the Linux forum, but here goes:
    Using Oracle10g on Linux, I'm using a bash script to run an sql script, but when I try to echo the results, it shows the output in a single line.
    Here's the script
    USERLIST=`sqlplus -s  / AS SYSDBA <<EOF
       set head off
       set verify off
       set feedback off
       SELECT username from dba_users;
       exit;
    EOF
    `
    echo $USERLIST;And here's the output:
    oracle@apps scripts]$ ./userl.sh
    PAYROLL HR2 CORE DEMO TIMEKEEPING SYS EXPENSE Is there anyway so that the output can be shown with line breaks, where all the output is not on one line? I understand I can spool to a file using the spool command, however I'd like to try and get it working this way first.
    Any help would be much appreciated, thanks.
    Edited by: oscrub on Sep 22, 2010 6:46 PM

    Handle:      oscrub
    Status Level:      Newbie
    Registered:      Oct 5, 2008
    Total Posts:      7
    Total Questions:      4 (3 unresolved)
    so many questions & so few answers.
    sh  t.sh
    SYSTEM
    SYS
    MGMT_VIEW
    DBSNMP
    SYSMAN
    USER1
    DBADMIN
    HR
    OE
    SH
    BONGO
    SCOTT
    OUTLN
    OLAPSYS
    SI_INFORMTN_SCHEMA
    OWBSYS
    ORDPLUGINS
    XDB
    ANONYMOUS
    CTXSYS
    ORDDATA
    OWBSYS_AUDIT
    APEX_030200
    APPQOSSYS
    WMSYS
    EXFSYS
    ORDSYS
    MDSYS
    FLOWS_FILES
    SPATIAL_WFS_ADMIN_USR
    SPATIAL_CSW_ADMIN_USR
    APEX_PUBLIC_USER
    DIP
    IX
    MDDATA
    PM
    BI
    XS$NULL
    ORACLE_OCMHow do you spell S-Q-L?

  • BASH Script - Launch App with

    I'm trying to write a simple BASH script that will laungh an program, but that program needs command line arguments.
    When I put it in quotes it says it can't find the file, if I don't use quotes then it won't run the program with the command line arguments. How can I launch a program using a BASH script with command line arguments?
    Thanks in advance

    #!/bin/bash
    /Users/name/Desktop/Directory/app -f configfile

  • E-Mail Notification with https link to new item

    Hi all,
    we have a vibe 3.4 system and want to use the e-mail notification features so all in our team will get those status messages.
    Generally this feature works and we get mail. The problem is that the links in the mail to the new item starts with http://... not https:/xxx.
    How can this be configured so the links use secure https to the items??
    kind regards,
    Martin

    Hi Martin,
    Does your system already use secure HTTP urls(HTTPS) when anyone accesses the site? If yes, then for emails you just need to configure at one place. Follow the steps below (but make sure to take proper backups before you do. I am just extracting the steps mentioned in Vibe Documentation, which can be read online as well here https://www.novell.com/documentation.../bju0gr2.html#. If all the configurations are made already, then just scroll down to the section: Defaulting to Secure HTTP URLs in E-Mail Notifications)
    Defaulting to Secure HTTP URLs in E-Mail Notifications
    When an e-mail notification is sent from Vibe, Vibe includes a URL to the location on the Vibe site where the notification was sent. By default, the URLs in e-mail notifications are formed with http rather than https. You can reconfigure Vibe to default to https for Vibe site URLs.
    Log in to the Vibe server with sufficient rights to edit the ssf-ext.properties file (root on Linux, Administrator on Windows).
    Change to the following directory:
    Linux:
    /opt/novell/teaming/apache-tomcat/
    webapps/ssf/WEB-INF/classes/config
    Windows:
    c:\Program Files\Novell\Teaming\apache-tomcat\
    webapps\ssf\WEB-INF\classes/config
    Open the ssf.properties file in a text editor.
    Locate and copy the following line:
    ssf.secure.links.in.email=false
    Close the ssf.properties file without saving.
    Make a backup copy of the ssf-ext.properties file, located in the same directory with the ssf.properties file.
    Open the ssf-ext.properties file in a text editor.
    Paste the line that you copied in Step 4 to the bottom of the file:
    ssf.secure.links.in.email=false
    Change false to true so that the line now looks like this:
    ssf.secure.links.in.email=true
    Save the ssf-ext.properties file, then exit the text editor
    Restart Vibe to put the change into effect.
    All system-generated e-mail notifications now default to secure HTTP URLs. However, all user-generated e-mails from the Vibe system follow the current users context. For example, if a user is logged in as HTTP and chooses to share an entry with another user, the link in the e-mail notification uses HTTP.
    Regards,
    Saad.

  • How to STOP E-mail Notification

    What are the steps to cancel E-mail notification?

    I elected E-mail Notifications using an ID different from the one I am using now. I left that ID because after several weeks of use for some unknown reason I could  not login. During the time I could login I elected E-mail Notifications. Using Customer Service>Support>Forums>PSE> and clicking on login/Register my screen turns white and a crash occurs. Adobe Chat and tech support have not been able to help. It was suggested that I establish a NEW ID. Because I can not login using the OLD ID I can not click on Stop Notifications as you suggested. A possible work around would be to establish an e-mail rule to "Do not download from the server" and/or "Delete from server". I will try that and see what happens.

  • Mail notifications stuck at "Loading"

    I've been searching around both here and the web in general trying to find an answer with no luck. Since upgrading to 8.2, my Mail notifications aren't behaving correctly. The alert will pop up on my iPhone 6's screen, but the preview will be stuck at "Loading". I've checked and re-checked that everything is set correctly multiple times, and I've also tried setting and re-setting the notification settings and Mail settings, swapped between Push and Fetch, and re-booted the iPhone. The mail itself actually comes through fine when I open the Mail app, it's just that the pop-up notifications get stuck (I've also tried switching between Banners and Alerts with no success). This behavior, in turn, also means that my Mail notifications don't get pushed to my Pebble (every other notification from the phone - texts, calls, etc. - get pushed just fine to the Pebble). Can anyone else suggest something I haven't tried yet? Many thanks!

    Not directly, unfortunately. Some posts on the Pebble reddit (where others are experiencing the same problems) suggest that it's an 8.2 bug since downgrading to 8.1.3 fixes the issue and the 8.3 beta is working fine as well. Since I'm receiving text and phone notifications, I solved my mail notification issue by switching to the Gmail app until either the bug (if that's what it is) is fixed or 8.3 comes out.

Maybe you are looking for

  • Impossibilité d'ouvrir un fichier pdf

    Bonjour, je vous écris car j'ai besoin d'aide. En effet, depuis que j'ai installé la nouvelle version d'Adobe Reader (9), il m'est impossible d'ouvrir des fichiers pdf! Le message d'erreur apparaît: Internet Explorer a cessé de fonctionner. Un problè

  • [OSS-worked-around] Kernel modules being unzipped after every reboot?

    I've been having this issue for a while, but didn't bother to track it down until now... Every time I log into my desktop environment (xfce4, xfwm, through slim) the process monitor widget shows one full core of CPU usage for almost a minute after th

  • Macbook slow at startup After Update

    Hi I am new to Mac's well I just updated to 10.4.9 and now my startup speed is slower than before also when opening app's. Well I emptied the Caches in home Library, Hd Library and system Library. But it still keep's being slow. I think I will do Dis

  • Edit HD Video in Premiere Pro 2.0?

    I hope I'm not trying to do the impossible here with my dated version of Premiere Pro 2.0. I bought an inexpensive HD camcorder. I'm shooting footage at 1080p 30fps. The result is an AVI file that I can just move from the camcorder to my second hard

  • Install Authorware in Safari 4?

    I'm running Safari 4.0.3 on Mac OS 10.5.8 and have been unable to install Authorware. Has anyone gotten this to work? It works fine in Firefox 3.5.3.