Tidy Timer

Ready to tidy up?
5:00

Tidy Timer was created with Websim. Honestly, it did most of the work. I just did a bit up front and a bit at the end, like playing baseball but not having to run the bases.

Find the original app online where you can download the code or have Websim make a variation to suit your own needs. The music doesn’t work on Websim because it’s just pointing to example files. To change the music files, just edit the array called musicFiles, pointing to the files on your own computer or server.

const musicFiles = [
  { file: 'lofi-track1.mp3', title: 'Chill Vibes', artist: 'LoFi Dreams', artistUrl: 'https://example.com/lofidreams' },
  { file: 'lofi-track2.mp3', title: 'Mellow Beats', artist: 'Chill Harmony', artistUrl: 'https://example.com/chillharmony' },
  { file: 'lofi-track3.mp3', title: 'Smooth Jazz', artist: 'Urban Tunes', artistUrl: 'https://example.com/urbantunes' },
  { file: 'lofi-track4.mp3', title: 'Relaxing Piano', artist: 'Peaceful Notes', artistUrl: 'https://example.com/peacefulnotes' },
  { file: 'lofi-track5.mp3', title: 'Urban Ambience', artist: 'City Sounds', artistUrl: 'https://example.com/citysounds' }
];

Also, you can create your own list of tasks by changing the array named tasks.

const tasks = [
  "Declutter a drawer",
  "Wipe down kitchen counters",
  "Organize your desk",
  "Dust one room",
  "Clean bathroom sink",
  "Tidy up your nightstand",
  "Sort through mail",
  "Vacuum a room",
  "Fold and put away laundry",
  "Clean out your fridge",
  "Organize your bookshelf",
  "Wipe down light switches and doorknobs",
  "Clean mirrors",
  "Organize your digital files",
  "Tidy up your car",
  "Clean your microwave",
  "Organize one shelf in your closet",
  "Water and dust plants",
  "Clean your keyboard and mouse",
  "Tidy up your entryway"
];