mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
get_keybinds.py now only checks for "bind="
This commit is contained in:
parent
d35c2a51b1
commit
322a5009f9
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ def get_binds_recursive(current_content, scope):
|
|||
if(keybind != None):
|
||||
current_content["keybinds"].append(keybind)
|
||||
|
||||
elif line == "" or line.startswith("$") or line.startswith("#"): # Comment, ignore
|
||||
elif line == "" or not line.lstrip().startswith("bind"): # Comment, ignore
|
||||
pass
|
||||
|
||||
else: # Normal keybind
|
||||
|
|
|
|||
Loading…
Reference in a new issue