18 lines
390 B
Bash
18 lines
390 B
Bash
#!/usr/bin/env bash
|
|
# ---
|
|
# @file_name: kitty_send.sh
|
|
# @version: 1.0.0
|
|
# @description: handles commands from kws alias
|
|
# @author: Jamie Albert (empty_produce)
|
|
# @author_contact: <mailto:empty.produce@flatmail.me>
|
|
# @license: GNU Affero General Public License v3.0 (Included in LICENSE)
|
|
# Copyright (C) 2025, Jamie Albert
|
|
# ---
|
|
|
|
main() {
|
|
stty -echo
|
|
exec "$@"
|
|
stty echo
|
|
}
|
|
|
|
main "$@" |