Home Calenderr: Daily updated Calendar App icon

Calenderr: Daily updated Calendar App icon

I’ve blogged about it yesterday: There’s now a small script available which (when run in the background) will make sure that the icon of the calendar app will always show the current day-of-month. It’s really trivial – you need developer mode enabled, and if you have changed your root password, you have to add it to the script (or simply modify it so that you can run it as root once, then you can do the “sed” call directly). Works on both the N9 and N950.
 

 
Script: calenderr.sh

Code:
#!/bin/sh
# Harmattan "Show Today's Date in Calendar App icon" Hack
# by Thomas Perl <thp.io/about>
# Usage: nohup sh calenderr.sh >/dev/null &
CALENDAR_DESKTOP=/usr/share/applications/calendar.desktop
SUBSTITUTE=s@^Icon=.*@Icon=icon-l-calendar-`date +%d`@
while : ; do
    echo rootme | devel-su -c "sed -i -e $SUBSTITUTE $CALENDAR_DESKTOP"
    SECONDS_TILL_MIDNIGHT=$((60*60*24 - `date +%-H`*60*60 - `date +%-M`*60 - `date +%-S`))
    sleep $SECONDS_TILL_MIDNIGHT
done

 
Source MeeGo

About ReadWrite’s Editorial Process

The ReadWrite Editorial policy involves closely monitoring the tech industry for major developments, new product launches, AI breakthroughs, video game releases and other newsworthy events. Editors assign relevant stories to staff writers or freelance contributors with expertise in each particular topic area. Before publication, articles go through a rigorous round of editing for accuracy, clarity, and to ensure adherence to ReadWrite's style guidelines.

Get the biggest tech headlines of the day delivered to your inbox

    By signing up, you agree to our Terms and Privacy Policy. Unsubscribe anytime.

    Tech News

    Explore the latest in tech with our Tech News. We cut through the noise for concise, relevant updates, keeping you informed about the rapidly evolving tech landscape with curated content that separates signal from noise.

    In-Depth Tech Stories

    Explore tech impact in In-Depth Stories. Narrative data journalism offers comprehensive analyses, revealing stories behind data. Understand industry trends for a deeper perspective on tech's intricate relationships with society.

    Expert Reviews

    Empower decisions with Expert Reviews, merging industry expertise and insightful analysis. Delve into tech intricacies, get the best deals, and stay ahead with our trustworthy guide to navigating the ever-changing tech market.