Skip to content

Instantly share code, notes, and snippets.

@kristianfreeman
Created December 11, 2014 05:17
Show Gist options
  • Save kristianfreeman/34dbd56306f022668521 to your computer and use it in GitHub Desktop.
Save kristianfreeman/34dbd56306f022668521 to your computer and use it in GitHub Desktop.
Due soon Trello dock badge for Fluid.app
// 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