From 73641f721d889714527b26c36898aff4c7449832 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 22 Apr 2026 13:36:29 +0200 Subject: [PATCH] Match order from elsewhere --- bin/omarchy-toggle-touchpad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-toggle-touchpad b/bin/omarchy-toggle-touchpad index cc1ce7ba..6c8428ca 100755 --- a/bin/omarchy-toggle-touchpad +++ b/bin/omarchy-toggle-touchpad @@ -12,14 +12,14 @@ fi enable() { hyprctl keyword "device[$device]:enabled" true >/dev/null rm -f "$STATE_CONF" - omarchy-swayosd-client --custom-icon input-touchpad-symbolic --custom-message "Enabled Touchpad" + omarchy-swayosd-client --custom-icon input-touchpad-symbolic --custom-message "Touchpad enabled" } disable() { hyprctl keyword "device[$device]:enabled" false >/dev/null mkdir -p "$(dirname "$STATE_CONF")" printf 'device {\n name = %s\n enabled = false\n}\n' "$device" > "$STATE_CONF" - omarchy-swayosd-client --custom-icon touchpad-disabled-symbolic --custom-message "Disabled Touchpad" + omarchy-swayosd-client --custom-icon touchpad-disabled-symbolic --custom-message "Touchpad disabled" } case "${1:-toggle}" in