Fix: non-functional keybinding for floating windows#1500
Fix: non-functional keybinding for floating windows#1500rajghosh06-dev wants to merge 1 commit intomylinuxforwork:mainfrom
Conversation
|
@mylinuxforwork I tested locally on my Arch + ML4W, and replacing it with |
I noticed that in my custom config In the shipped latest update, default.conf when enabled from ml4w-settings [shows NO ERROR]
- Here no error is raised when used `bindd`
my custom keybinding-> 'defaultRG.conf' (using bindd) when enabled from ml4w-settings [shows ERROR, not functional]
- Error raised when used `bind`. This is only seen here in my custom .conf (`defaultRG.conf`)
ERROR Message
but in the same custom keybinding-> 'defaultRG.conf' (using bind) when enabled from ml4w-settings [shows no ERROR, and is functional]
Ultimately, this difference in behavior between |





Description
This pull request fixes a typo in the Hyprland keybindings configuration.
The directive was incorrectly written as
bindd, which Hyprland does not recognize.It has been corrected to
bind, ensuring the shortcut works properly.Changes
Context
Hyprland supports
bind,binde, andbindmas valid binding keywords.The configuration contained
bindd, which caused Hyprland to throw an error and ignore the shortcut.By replacing
binddwithbind, the shortcut now executes the scriptml4w-toggle-allfloatcorrectly.How Has This Been Tested?
binddthrows a config error and does not work.bindfixes the issue and the shortcut works as intended.Checklist
Screenshots
NOTE: this is a one-line config fix.
IMG1: Shows the error!
IMG2: Shows the Error
IMG3: Corrected Version
IMG4: Working Pic
Related Issues
One Related Issue, I have explained it in the Comments. This PR directly addresses the problem.
Additional Notes
This is a small but important fix to ensure the configuration parses cleanly and the shortcut works out of the box.