From ed9ecccb21c0f5f5ff15649c65496d7724834291 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 22 Apr 2026 13:04:01 +0200 Subject: [PATCH] Better notification message --- 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 d2ef6876..fbbea79a 100755 --- a/bin/omarchy-toggle-touchpad +++ b/bin/omarchy-toggle-touchpad @@ -13,14 +13,14 @@ fi enable() { hyprctl keyword "device[$device]:enabled" true >/dev/null rm -f "$STATE_CONF" - $osdclient --custom-icon input-touchpad-symbolic --custom-message "Enabled" + omarchy-swayosd-client --custom-icon input-touchpad-symbolic --custom-message "Enabled Touchpad" } 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" - $osdclient --custom-icon touchpad-disabled-symbolic --custom-message "Disabled" + omarchy-swayosd-client --custom-icon touchpad-disabled-symbolic --custom-message "Disabled Touchpad" } case "${1:-toggle}" in