mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-01-11 14:40:25 +01:00
[BUG]: Incompatibility with BetterDiscord transparent theme #569
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @winchestercanal on GitHub (Jan 27, 2025).
Summary
I like to use the BetterDiscord plugin to add features to my discord, like zooming on images, translating messages, and themes!
It turns out that when enabling the transparent themes option, Komorebi can no longer see Discord, preventing window management!
BetterDiscord: https://betterdiscord.app
Image with English translation, to facilitate understanding!

Version Information
Windows 11 24h2
komorebi 0.1.33
Komorebi Configuration
Hotkey Configuration
.shell powershell
Reload whkd configuration
alt + o : taskkill /f /im whkd.exe && start /b whkd # if shell is cmd
alt + o : taskkill /f /im whkd.exe; Start-Process whkd -WindowStyle hidden # if shell is pwsh / powershell
alt + shift + o : komorebic reload-configuration
App shortcuts - these require shell to be pwsh / powershell
The apps will be focused if open, or launched if not open
alt + f : if ($wshell.AppActivate('Firefox') -eq $False) { start firefox }
alt + b : if ($wshell.AppActivate('Chrome') -eq $False) { start chrome }
alt + q : komorebic close
alt + m : komorebic minimize
Focus windows
alt + j : komorebic focus left
alt + k : komorebic focus down
alt + i : komorebic focus up
alt + l : komorebic focus right
alt + shift + 9 : komorebic cycle-focus previous # oem_4 is [
alt + shift + 0 : komorebic cycle-focus next # oem_6 is ]
Move windows
alt + ctrl + j : komorebic move left
alt + ctrl + k : komorebic move down
alt + ctrl + i : komorebic move up
alt + ctrl + l : komorebic move right
alt + t : komorebic promote
Stack windows
alt + a : komorebic stack left
alt + s : komorebic stack down
alt + w : komorebic stack up
alt + d : komorebic stack right
alt + u : komorebic unstack # oem_1 is ;
alt + shift + oem_4 : komorebic cycle-stack previous # oem_4 is [
alt + shift + oem_6 : komorebic cycle-stack next # oem_6 is ]
Resize
alt + oem_plus : komorebic resize-axis horizontal increase
alt + oem_minus : komorebic resize-axis horizontal decrease
alt + shift + oem_plus : komorebic resize-axis vertical increase
alt + shift + oem_minus : komorebic resize-axis vertical decrease
Manipulate windows
alt + r : komorebic toggle-float
alt + ctrl + t : komorebic toggle-monocle
Window manager options
alt + shift + r : komorebic retile
alt + ctrl + r : komorebic toggle-pause
Layouts
alt + x : komorebic flip-layout horizontal
alt + y : komorebic flip-layout vertical
Workspaces
alt + 1 : komorebic focus-workspace 0
alt + 2 : komorebic focus-workspace 1
alt + 3 : komorebic focus-workspace 2
alt + 4 : komorebic focus-workspace 3
alt + 5 : komorebic focus-workspace 4
alt + 6 : komorebic focus-workspace 5
alt + 7 : komorebic focus-workspace 6
alt + 8 : komorebic focus-workspace 7
Move windows across workspaces
alt + shift + 1 : komorebic move-to-workspace 0
alt + shift + 2 : komorebic move-to-workspace 1
alt + shift + 3 : komorebic move-to-workspace 2
alt + shift + 4 : komorebic move-to-workspace 3
alt + shift + 5 : komorebic move-to-workspace 4
alt + shift + 6 : komorebic move-to-workspace 5
alt + shift + 7 : komorebic move-to-workspace 6
alt + shift + 8 : komorebic move-to-workspace 7
Output of komorebic check
komorebic check
No KOMOREBI_CONFIG_HOME detected, defaulting to C:\Users\rafae
Looking for configuration files in C:\Users\rafae
Found komorebi.json; this file can be passed to the start command with the --config flag
Found C:\Users\rafae.config\whkdrc; key bindings will be loaded from here when whkd is started, and you can start it automatically using the --whkd flag
@LGUG2Z commented on GitHub (Jan 27, 2025):
This is a wontfix because transparency requires the LAYERED flag (which is an indicator to komorebi that a window should not be managed).
The only form of transparency supported by komorebi is when komorebi sets the LAYERED flag itself and keeps track of internally of windows which have that flag and should be managed; you can set
transparencytotruefor this in the config, and it will add transparency to non-focused windows - there are no plans for adding transparency to focused windows.