mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
8 lines
165 B
Bash
Executable File
8 lines
165 B
Bash
Executable File
#!/usr/bin/env bash
|
|
for cmd in "$@"; do
|
|
[[ -z "$cmd" ]] && continue
|
|
eval "command -v ${cmd%% *}" >/dev/null 2>&1 || continue
|
|
eval "$cmd" &
|
|
exit
|
|
done
|