Last active
September 16, 2019 17:08
-
-
Save jakebellacera/4772194 to your computer and use it in GitHub Desktop.
An updated Fluidapp Userscript for Gmail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// use for patterns: | |
// *gmail.com* | |
// *mail.google.com* | |
// *google.com*mail* | |
window.fluid.dockBadge = ''; | |
setTimeout(updateDockBadge, 3000); | |
setInterval(updateDockBadge, 15000); | |
function updateDockBadge() { | |
var inboxLink = document.querySelector('a[title^="Inbox"]'); | |
var regex = /\s*Inbox\s*\((\d+)\)[^\d]*/; | |
var res = inboxLink.title.match(regex); | |
if (res && res.length > 1) { | |
var newBadge = res[1]; | |
window.fluid.dockBadge = newBadge; | |
} else { | |
regex = /^Inbox$/; | |
if(regex.test(inboxLink.title)){ | |
window.fluid.dockBadge = ''; | |
} | |
} | |
} |
this is working for me now... https://github.com/ssetti/fluid-app-scripts/blob/master/gmail-badge.js
I updated to macOS Catalina beta and this stopped working. Any ideas?
@BDO811 Perhaps it's a bug with Catalina? I don't use FluidApp anymore unfortunately :(
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Could not get this one working. This works for me: https://gist.github.com/tordans/85cbaa856b93b52e9a1465004569218e