Files
dao_hades/scripts/patches/kitty_send.sh
Jamie Albert e5d26bd32b Lazy commit
2025-11-06 02:30:35 +00:00

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 "$@"