#!/bin/bash

EXE=$(dirname "$0")/../lib64/windsurf/windsurf
if [[ -x $EXE ]]; then
    export XDG_SESSION_TYPE=x11
    exec $EXE "$@"
fi
