You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Screenpad currently alternates between "Brightness 100%", "Hidden (brightness 0%)", "Off". I want an option to alternate only between "On" and "Off".
Describe the solution you'd like
I usually set second screen brightness using ScreenXpert button. I don't want g-helper to change the screenpad brightness. I only want to toggle it on/off (for battery)
Describe alternatives you've considered
Add ToggleScreenpad function to InputDispatcher.cs
publicstaticvoidToggleScreenpad(boolenable){stringtoast;if(enable){toast="On";
Program.acpi.DeviceSet(AsusACPI.ScreenPadToggle,1,"ScreenpadOn");}else{toast="Off"
Program.acpi.DeviceSet(AsusACPI.ScreenPadToggle,0,"ScreenpadOff");}
Program.toast.RunToast($"Screen Pad {toast}",delta>0? ToastIcon.BrightnessUp : ToastIcon.BrightnessDown);}
Additional context
Testing available.
If you accept PRs, I'm willing to create one.
The text was updated successfully, but these errors were encountered:
So you want to remove one of the steps from the list ? Thing is that current scenario I have recreated according to what another Duo user was asking #1215 :) and that will break it
I can add an optional config param, that will allow that. As this is quite specific usecase that you want.
Is your feature request related to a problem? Please describe.
Screenpad currently alternates between "Brightness 100%", "Hidden (brightness 0%)", "Off". I want an option to alternate only between "On" and "Off".
Describe the solution you'd like
I usually set second screen brightness using ScreenXpert button. I don't want g-helper to change the screenpad brightness. I only want to toggle it on/off (for battery)
Describe alternatives you've considered
Add
ToggleScreenpad
function toInputDispatcher.cs
Additional context
Testing available.
If you accept PRs, I'm willing to create one.
The text was updated successfully, but these errors were encountered: