💾 Archived View for rawtext.club › ~jmq › news › 2015-03-14-mpd-cronjob.gmi captured on 2023-04-20 at 00:19:06. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
Happy Pi Day! After almost two weeks since Mark came over to my house and inspired me to make the sunroom into my primary living/sleeping quarters, I moved back into the small upstairs room in anticipation of warmer summer temperatures in the months ahead. The savings on heating costs by maintaining only the sunroom at comfortable temperatures these past two weeks won't be seen until the first week of April, when I get my gas bill for this month.
A recent trip to the electric meter confirmed my suspicion that the solar panels are already generating more electricity than the house is using, even though we have yet to see the most rapid increase in hours of daylight as the vernal equinox approaches. In addition, the electric heater in the sunroom runs much quieter than the forced air in the rest of the house. Despite these considerations, the temptation to rearrange furniture yet again on a cloudy Friday afternoon proved irresistible, and I found myself sleeping last night in the small, dark room under several layers of comforters.
Today the forecasted rain finally blanketed the region, dissuading me from making the usual trip to Hyattsville for the game with the flying disc. Instead I stayed at home and tried to clean up the tags on my digital music collection, using the TUI application ncmpcpp. With full albums sorted into folders and properly tagged, a more versatile version of my wakeup alarm bash script can be implemented as follows.
PATH=/bin:/usr/bin; mpc clear &>/dev/null # unload the current playlist mpc volume 100 &>/dev/null # set the volume to 100% case $# in 0 ) mpc load wakeup &>/dev/null # load the playlist du jour mpc play &>/dev/null # start the music! ;;