#!/bin/bash
# ClipMate launcher with X11 backend
# This ensures global shortcuts work on Wayland systems

# Force X11 instead of Wayland
export GDK_BACKEND=x11

# Alternative fix
export WEBKIT_DISABLE_COMPOSITING_MODE=1

exec "/usr/bin/clipmate-binary" "$@"
