Add the missing terminal launcher behind Super and Enter

This commit is contained in:
2026-09-21 00:49:35 +00:00
parent 737d601bca
commit e5c20e0a46
2 changed files with 16 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# blob:summary=Launch the default terminal
# blob:args=[command [args...]]
if blob-cmd-present xdg-terminal-exec; then
exec setsid uwsm-app -- xdg-terminal-exec "$@"
fi
for terminal in foot kitty; do
blob-cmd-present "$terminal" && exec setsid uwsm-app -- "$terminal" "$@"
done
blob-notify-send "No terminal installed" "Install xdg-terminal-exec, foot or kitty."
exit 1