2021-03-06 12:56:33 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
###############################################################
|
|
|
|
# ks-tools - Initialize the ks-tools terminal (using xterm) #
|
2022-01-02 17:20:24 +01:00
|
|
|
# Date: 02-01-2022 #
|
2021-03-06 12:56:33 +01:00
|
|
|
# Author: q3aql #
|
2022-01-02 17:20:24 +01:00
|
|
|
# Contact: q3aql@duck.com #
|
2021-03-06 12:56:33 +01:00
|
|
|
###############################################################
|
2022-01-02 17:20:24 +01:00
|
|
|
VERSION="8.0"
|
|
|
|
M_DATE="020122"
|
2021-03-06 12:56:33 +01:00
|
|
|
|
|
|
|
# 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}"
|
|
|
|
|
2021-03-23 11:49:30 +01:00
|
|
|
# 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}
|