npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

midnight-oil

v0.3.1

Published

Switch themes based on time of day

Downloads

26

Readme

midnight-oil

Change themes based on the time of day

Installation: apm install midnight-oil

Usage

Changing Themes

It's highly recommended that you look at the settings and adjust them accordingly after installing. The most important settings are the 'Day Theme' and 'Night Theme' settings, additionally if you use a UI theme (such as Atom Material) that adapts the color scheme to be light or dark depending on the syntax theme, you should turn off the 'Switch Theme' setting. Turning this setting off will retain your UI theme regardless of what options are set and will only change the syntax theme.

Setting Trigger Times

The 'Day Time' and 'Night Time' settings control the time at which the package triggers a theme transition. These times should be in the format of the hour and the minute separated by a : (e.g. 8:30). The day time is in AM and the night time is in PM however you can also use a 24 hour time format like 20:30 for 8:30 PM. Note that changing these settings does require a restart or a reload.

The package will also use these time settings to detect what time of day it is on Atom startup and switch the theme accordingly.

Snooze

Because changing the theme can be disruptive while working, when a trigger time is reached a confirmation dialog will appear with an option to switch the theme over or snooze the transition. After snoozing the dialog will simply appear again after 5 minutes.

Known Issues

After switching from a dark to a light theme or vice versa there seems to be an issue where Atom will keep some elements from the previous theme (i.e. the active pane keeping the old syntax coloring with the new theme or textboxes using the dark theme against a light background). Usually this can simply be fixed by either restarting or reloading Atom. Annoying but hopefully this gets fixed soon, see issue #9550 on Atom for more details.

TODO

  • [ ] Occasionally the package adds between ~450ms - ~500ms to the Atom startup time but typically only ads ~5ms - ~8ms. Work on profiling the main activate() function and see where time is being spent in those cases.
  • [ ] Running an Atom session for a long period of time (upwards of 6 hours) seems to break the timeouts that have to wait a long time, needs investigation
  • [ ] Write tests for the functions that parse time & switch themes
  • [ ] Write tests for the TimeEmitter class