mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-11 19:17:19 +10:00
14 lines
424 B
Bash
Executable File
14 lines
424 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Script name: stay
|
|
# Description: Opens terminal and runs a command and stays open.
|
|
# Dependencies: dtos-settings
|
|
# GitLab: https://www.gitlab.com/dtos/dtos-settings/
|
|
# License: https://www.gitlab.com/dtos/dtos-settings/
|
|
# Contributors: Derek Taylor
|
|
|
|
source "$HOME"/.config/dtos-settings/dtos.conf
|
|
|
|
$DTOSTERM -e bash -c "$*; echo -e; tput setaf 5 bold; \
|
|
read -p 'Press any key to exit ' -s -n 1"
|