ks-tools/prompt/ks-tools
2022-01-04 12:35:09 +01:00

28 lines
838 B
Bash
Executable File

#!/bin/bash
###############################################################
# ks-tools - Initialize the ks-tools terminal (using xterm) #
# Date: 04-01-2022 #
# Author: q3aql #
# Contact: q3aql@duck.com #
###############################################################
VERSION="8.1"
M_DATE="040122"
# Variables
name_terminal="ks-tools v${VERSION} (${M_DATE})"
term="xterm"
font="Monospace"
size_font="11"
color_b="black"
color_f="white"
rcfile="/usr/share/ks-tools/ks-tools-rc"
command="bash --rcfile ${rcfile}"
# Command to run with xterm (Disabled)
#${term} -T "${name_terminal}" -fa ${font} -fs ${size_font} -bg ${color_b} \
#-fg ${color_f} -e ${command}
# Command to run with native terminal
${command}