Maassoft / ColorControl

Easily change NVIDIA display settings and/or control LG TV's
GNU General Public License v3.0
823 stars 39 forks source link

One Shortcut to apply 2 profiles? one for each display in a multimonitor setup 🤔 #344

Open Milincho opened 3 months ago

Milincho commented 3 months ago

How can I use one Shortcut to apply 2 profiles at the same time?

I use a 2 display setup, and I want to change both displays settings at the same time...

beracira commented 2 months ago

A workaround that I use is AutoHotkey. I bind one key to send two different keystrokes. e.g.

F13::
  Send #{F1}
  Send #{F2}
return

When F13 is pressed, it sends Win + F1 and then Win + F2.