7 lines
294 B
Bash
Executable File
7 lines
294 B
Bash
Executable File
#!/bin/bash
|
|
# Display the keybindings Lua file in a pager for quick reference.
|
|
# binds.lua is the single source of truth for all keybindings, so reading it
|
|
# directly ensures the help view is always up-to-date with the live config.
|
|
cat ~/Dotfiles/desktopenvs/hyprlua/hypr/usr/binds.lua | less
|
|
|