Created
December 11, 2014 05:17
-
-
Save kristianfreeman/34dbd56306f022668521 to your computer and use it in GitHub Desktop.
Due soon Trello dock badge for Fluid.app
This file contains hidden or 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
// adapted from http://scottnelle.com/414/updated-fluid-app-userscript-for-gmail-unread-count/ | |
window.fluid.dockBadge = ''; | |
setTimeout(updateDockBadge, 3000); | |
setInterval(updateDockBadge, 15000); | |
function updateDockBadge() { | |
var dueSoon = $(".badge.badge-state-due-soon").length || ''; | |
console.log('updating dockBadge to', dueSoon) | |
window.fluid.dockBadge = dueSoon; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment