Add a sxmo_brun.sh to run binaries

This commit is contained in:
Willow Barraco
2023-03-27 19:54:54 +02:00
parent 2b1dde63ae
commit 856905c7ae
2 changed files with 17 additions and 0 deletions

16
scripts/core/sxmo_brun.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
# SPDX-License-Identifier: AGPL-3.0-only
# Copyright 2022 Sxmo Contributors
# include common definitions
# shellcheck source=scripts/core/sxmo_common.sh
. sxmo_common.sh
case "$SXMO_WM" in
dwm)
exec dmenu_run "$@"
;;
sway)
exec bemenu-run "$@"
;;
esac