Jiawei Duan
Jiawei Duan
After going through the comments, I understand now that why this feature hasn't implemented. The distance based method seems not to be a good idea, my initial idea is not...
> @RoadToDream That's an interesting idea. We would replace the checkbox here: > >  > > By a dropdown menu with 3 options: > > * Mouse hover >...
> Thanks @RoadToDream for sharing this issue! > > I was able to reproduce. It only happen in the specific scenario of **dragging something from inside a folder in the...
Oh, I get what you mean, and that scenario should be a little weird. May I share some of my thoughts? When people triggered Mission Control, they should be intentional...
> I wonder what will happen after AltTab is released. It's very much possible that it focuses the window, but doesn't leave the "Show desktop" situation. That wouldn't be a...
> I think instead of adding it as a default option, you can add it as a url request parameter. > > > > This feature is very underused, don't...
I get it, thank you! It seems that I did not explain purpose of this commit clearly... I intended to provide control that the notification will diss or not, so...
This translation is very good, looking forward to being merged.
Hi @BartoszCichecki, you may implement that by using this script. ```powershell function Toggle-RearUSBLightingState { $LenovoWMIPath=(Get-WmiObject -Namespace "root\WMI" -Query "SELECT * FROM LENOVO_LIGHTING_METHOD").__PATH $LenovoWMI=[WMI]$LenovoWMIPath $LightingID=5 $CurrentState=$LenovoWMI.Get_Lighting_Current_Status($LightingID).Current_State_Type $TargetState=[int]($CurrentState -xor 1) $LenovoWMI.Set_Lighting_Current_Status($LightingID,$TargetState,0) }...
There should be more for different versions of BIOS, but for mine I guess that's all. There are also some methods that helps implementing Spectrum via other interface. But that...