TimUntersberger
TimUntersberger
> It also most likely does not handle unplugging all of the monitors, and I'm not actually sure what to do in that case. Perhaps create a virtual display? Or...
I only really want to support this feature if it doesn't require a lot of change in our architecture, as this is really niche in my opinion. What are your...
I really like your idea of having "actions". Maybe we could extract the whole logic into actions, instead of only post actions? ```rust enum Action { TaskbarShow, TaskbarHide, ... }...
@Sahnvour Do you have a keybinding which uses `Alt + E` ? We are using the [RegisterHotKey](https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-registerhotkey) function for keybindings and I can't see AltGr as a valid modifier. Maybe...
I looked for a way to detect this and it looks like most applications also check whether the left or right alt key was pressed. `AltGr` uses the right `Alt`...
Newest development release contains an attempt at fixing this.
@Sahnvour did my solution work?
@Sahnvour is this now working for you?
@Sahnvour if you are not using the right alt key you shouldn't actually have any problems, since we now differentiate between left and right (AltGr is Control + RAlt). I...
@Sahnvour has this been fixed for you?