diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-08-15 11:26:57 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:41:34 -0700 |
| commit | 912130c3b2c09123d933addde1fcf97373a5cdc1 (patch) | |
| tree | ba57dce1e2002552898476269955d687e7f67bb5 /config/hypr/lua | |
| parent | 16a0414b0e6cf4c27fc5550e7acee3e731cddbb7 (diff) | |
Fixed opacity keybinds add: ToggleOpacity script
Signed-off-by: Don Williams <don.e.williams@gmail.com>
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: CHANGELOG.md
modified: config/hypr/configs/Keybinds.conf
modified: config/hypr/configs/system_keybinds.lua
modified: config/hypr/lua/keybind_helpers.lua
new file: config/hypr/scripts/ToggleOpacity.sh
Diffstat (limited to 'config/hypr/lua')
| -rw-r--r-- | config/hypr/lua/keybind_helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/hypr/lua/keybind_helpers.lua b/config/hypr/lua/keybind_helpers.lua index 8240cc60..1b1a269b 100644 --- a/config/hypr/lua/keybind_helpers.lua +++ b/config/hypr/lua/keybind_helpers.lua @@ -213,7 +213,7 @@ local function dispatch(name, args) return window_api.bring_to_top() end if name == "setprop" and window_api.set_prop then - local prop, value = args:match("^(%S+)%s+(.+)$") + local _win, prop, value = args:match("^(%S+)%s+(%S+)%s+(.+)$") if prop and value then return window_api.set_prop({ prop = prop, value = value }) end |
