Skip to content

Small tool for visually compare monitor/TV displays and screen sizes that helps while planing new purchases

License

Notifications You must be signed in to change notification settings

MarcinOrlowski/compare-monitors

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What is it?

This is bunch of JS scripts I wrote to help me decide what type of monitor I should get next. I was mostly concerned about screen dimensions as well as display resolution and all this is can be visually compared.

Example

Usage

Note, this is tool I wrote just for my own purpose, so no fancy configs, nice looking UI, sophisticated error handling nor other usual stuff. If you want to play with it, you need to add specification of the displays you are comparing by directly editing monitors.js script. The monitors_src array holds monitors as separate objects, i.e.

    {
  label: "Dell U3219Q",
  model: "b96b14f5",
  display: {
    w: 713,
    h: 415
  },
  resolution: {
    w: 3840,
    h: 2160,
    freq: 60
  },
  checked: true
},

where fields are:

  • label is any string you want to be used as display label (ensure it's unique though),
  • model is display model ID from www.displayspecifications.com site I was using. It is mostly used to construct reference link (if you need more specs) and to get the monitor image thumbnail,
  • display specifies width and height of the display. The units are millimeters, but units are in fact quite irrelevant and can be anything you want. Just keep it the same for each monitor otherwise comparison would have no much sense.
  • resolution specifies width, height (in pixels) and max. refresh frequency of the display.
  • checked determines if monitor is enabled true (default) or excluded from visual comparison (false).

Once you set it all up, just use any web browser and open index.html file and that's it. You do * NOT* need any webserver installed nor running. It's all local. Just type file://<PATH TO WHERE YOU GOT THESE FILES STORED>/index.html in your browser address bar and you should be good.

License

  • Written and copyrighted ©2020-2023 by Marcin Orlowski <mail (#) marcinorlowski (.) com>
  • This application is open-sourced software licensed under the MIT license

About

Small tool for visually compare monitor/TV displays and screen sizes that helps while planing new purchases

Topics

Resources

License

Stars

Watchers

Forks