Originally created by @ComputerCulture on GitHub (Sep 7, 2024).
Hi @LGUG2Z
Microsoft Outlook Reminders Window shows up on all work spacers when changing to a new workspace, yet the main UI will stay on the work space it was open on.
Is this a bug? or how can it be implemented so the small reminders window in outlook remains on the same work space as the main UI
Thank you...
Originally created by @ComputerCulture on GitHub (Sep 7, 2024).
Hi @LGUG2Z
Microsoft Outlook Reminders Window shows up on all work spacers when changing to a new workspace, yet the main UI will stay on the work space it was open on.
Is this a bug? or how can it be implemented so the small reminders window in outlook remains on the same work space as the main UI
Thank you...
adam
added the bug label 2026-01-05 14:50:55 +01:00
Can you share an image of this? I don't use Outlook so I can't visualize what you're describing.
Generally, popups or windows that are ignored are completely ignored by komorebi, so they will appear wherever the operating system tells them to appear and komorebi will never try to do anything with them.
@LGUG2Z commented on GitHub (Sep 7, 2024):
Can you share an image of this? I don't use Outlook so I can't visualize what you're describing.
Generally, popups or windows that are ignored are _completely ignored_ by komorebi, so they will appear wherever the operating system tells them to appear and komorebi will never try to do anything with them.
@ComputerCulture commented on GitHub (Sep 8, 2024):
Hi @LGUG2Z
Thank you for your reply, i have attached an image of Microsoft Outlook the main UI and the
"Reminders Window"
I have tried other tiling window managers and also windows virtual desktop and the reminders window will not show up on other work spacers
@ComputerCulture commented on GitHub (Sep 8, 2024):
Hi @LGUG2Z
Thank you for your reply, i have attached an image of Microsoft Outlook the main UI and the
"Reminders Window"
I have tried other tiling window managers and also windows virtual desktop and the reminders window will not show up on other work spacers

That window is always set to float with a rule on application-specific-configuration. That is needed otherwise komorebi would try to tile that window, which is probably not what you want for a reminders window. The downside of having it set to float is that komorebi ignores it, so it won't hide it when you change workspace.
@LGUG2Z Maybe we could change this behaviour and instead of ignoring the windows we could add them to the floating_windows of the workspace. This way the windows would still be tied to that workspace and be properly hidden when changing workspaces. I know you've previously mentioned adding an ignored-rules to separate the windows one wants to be floating from the ones that need to be ignored and this issue is a case that would be fixed by that...
@alex-ds13 commented on GitHub (Sep 20, 2024):
That window is always set to float with a rule on `application-specific-configuration`. That is needed otherwise komorebi would try to tile that window, which is probably not what you want for a reminders window. The downside of having it set to float is that komorebi ignores it, so it won't hide it when you change workspace.
@LGUG2Z Maybe we could change this behaviour and instead of ignoring the windows we could add them to the `floating_windows` of the workspace. This way the windows would still be tied to that workspace and be properly hidden when changing workspaces. I know you've previously mentioned adding an `ignored-rules` to separate the windows one wants to be floating from the ones that need to be ignored and this issue is a case that would be fixed by that...
This will force that reminders window to always show on workspace 1.
@LGUG2Z If you think this is an acceptable solution to this problem maybe you can close this issue. I couldn't find another way of bypassing application-specific-configuration rules, besides force managing the window and then setting it to floating_windows as well. There might be some rules on application-specific-configuration that could be changed from ignore_rules to floating_windows, but I guess those might show up naturally once the users start to use this and realize that there are other windows they would prefer have floating, instead of ignored and start asking for it...
@alex-ds13 commented on GitHub (Oct 11, 2024):
You can now fix this with the latest version on master doing this:
```jsonc
"manage_rules": [
[
{
"kind": "Exe",
"id": "OUTLOOK.EXE",
"matching_strategy": "Equals"
},
{
"kind": "Class",
"id": "#32770",
"matching_strategy": "Equals"
}
]
],
"floating_applications": [
[
{
"kind": "Exe",
"id": "OUTLOOK.EXE",
"matching_strategy": "Equals"
},
{
"kind": "Class",
"id": "#32770",
"matching_strategy": "Equals"
}
]
],
```
Then if you want it to always be on the same workspace you can add a `workspace_rule` for that specific workspace, like this:
```jsonc
"monitors": [
{
"workspaces": [
{
"name": "1",
"layout": "BSP",
"workspace_rules": [
[
{
"kind": "Exe",
"id": "OUTLOOK.EXE",
"matching_strategy": "Equals"
},
{
"kind": "Class",
"id": "#32770",
"matching_strategy": "Equals"
}
]
]
},
{
"name": "2",
"layout": "VerticalStack"
}
]
}
],
```
This will force that reminders window to always show on workspace 1.
@LGUG2Z If you think this is an acceptable solution to this problem maybe you can close this issue. I couldn't find another way of bypassing `application-specific-configuration` rules, besides force managing the window and then setting it to `floating_windows` as well. There might be some rules on `application-specific-configuration` that could be changed from `ignore_rules` to `floating_windows`, but I guess those might show up naturally once the users start to use this and realize that there are other windows they would prefer have floating, instead of ignored and start asking for it...
Then if you want it to always be on the same workspace you can add a workspace_rule for that specific workspace, like this:
I don't think this is implemented for floating applications yet 🤔
@LGUG2Z commented on GitHub (Oct 11, 2024):
> Then if you want it to always be on the same workspace you can add a workspace_rule for that specific workspace, like this:
I don't think this is implemented for floating applications yet 🤔
Then if you want it to always be on the same workspace you can add a workspace_rule for that specific workspace, like this:
I don't think this is implemented for floating applications yet 🤔
Oh right! Didn't think of that... I can look into adding that. But can't do it in time for this Saturday's nightly release...
@alex-ds13 commented on GitHub (Oct 11, 2024):
> > Then if you want it to always be on the same workspace you can add a workspace_rule for that specific workspace, like this:
>
> I don't think this is implemented for floating applications yet 🤔
Oh right! Didn't think of that... I can look into adding that. But can't do it in time for this Saturday's nightly release...
Workspace rules are always lagging behind since the start of the project 🙃 they only recently got full support for all matchers 😅
@LGUG2Z commented on GitHub (Oct 11, 2024):
Workspace rules are always lagging behind since the start of the project 🙃 they only recently got full support for all matchers 😅
@LGUG2Z This issue should have been close with the merge of #1060. I must not have linked it properly... I think you can close it now!
@alex-ds13 commented on GitHub (Dec 26, 2024):
@LGUG2Z This issue should have been close with the merge of #1060. I must not have linked it properly... I think you can close it now!
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @ComputerCulture on GitHub (Sep 7, 2024).
Hi @LGUG2Z
Microsoft Outlook Reminders Window shows up on all work spacers when changing to a new workspace, yet the main UI will stay on the work space it was open on.
Is this a bug? or how can it be implemented so the small reminders window in outlook remains on the same work space as the main UI
Thank you...
@LGUG2Z commented on GitHub (Sep 7, 2024):
Can you share an image of this? I don't use Outlook so I can't visualize what you're describing.
Generally, popups or windows that are ignored are completely ignored by komorebi, so they will appear wherever the operating system tells them to appear and komorebi will never try to do anything with them.
@ComputerCulture commented on GitHub (Sep 8, 2024):
Hi @LGUG2Z
Thank you for your reply, i have attached an image of Microsoft Outlook the main UI and the

"Reminders Window"
I have tried other tiling window managers and also windows virtual desktop and the reminders window will not show up on other work spacers
@alex-ds13 commented on GitHub (Sep 20, 2024):
That window is always set to float with a rule on
application-specific-configuration. That is needed otherwise komorebi would try to tile that window, which is probably not what you want for a reminders window. The downside of having it set to float is that komorebi ignores it, so it won't hide it when you change workspace.@LGUG2Z Maybe we could change this behaviour and instead of ignoring the windows we could add them to the
floating_windowsof the workspace. This way the windows would still be tied to that workspace and be properly hidden when changing workspaces. I know you've previously mentioned adding anignored-rulesto separate the windows one wants to be floating from the ones that need to be ignored and this issue is a case that would be fixed by that...@alex-ds13 commented on GitHub (Oct 11, 2024):
You can now fix this with the latest version on master doing this:
Then if you want it to always be on the same workspace you can add a
workspace_rulefor that specific workspace, like this:This will force that reminders window to always show on workspace 1.
@LGUG2Z If you think this is an acceptable solution to this problem maybe you can close this issue. I couldn't find another way of bypassing
application-specific-configurationrules, besides force managing the window and then setting it tofloating_windowsas well. There might be some rules onapplication-specific-configurationthat could be changed fromignore_rulestofloating_windows, but I guess those might show up naturally once the users start to use this and realize that there are other windows they would prefer have floating, instead of ignored and start asking for it...@LGUG2Z commented on GitHub (Oct 11, 2024):
I don't think this is implemented for floating applications yet 🤔
@alex-ds13 commented on GitHub (Oct 11, 2024):
Oh right! Didn't think of that... I can look into adding that. But can't do it in time for this Saturday's nightly release...
@LGUG2Z commented on GitHub (Oct 11, 2024):
Workspace rules are always lagging behind since the start of the project 🙃 they only recently got full support for all matchers 😅
@alex-ds13 commented on GitHub (Dec 26, 2024):
@LGUG2Z This issue should have been close with the merge of #1060. I must not have linked it properly... I think you can close it now!