mirror of
https://github.com/Cian-H/dotfiles.git
synced 2026-06-10 15:04:53 +01:00
10 lines
172 B
Bash
10 lines
172 B
Bash
#!/usr/bin/env bash
|
|
|
|
printf -v safe_args '%q ' "$@"
|
|
|
|
if command -v qs >/dev/null 2>&1; then
|
|
exec qs -c "noctalia-shell $safe_args"
|
|
else
|
|
exec noctalia-shell "$@"
|
|
fi
|