2021-03-06 12:56:33 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
###############################################################
|
|
|
|
# ks-tools - Initialize the ks-tools ZUI (using xterm) #
|
2021-03-26 21:04:55 +01:00
|
|
|
# Date: 26-03-2021 #
|
2021-03-06 12:56:33 +01:00
|
|
|
# Author: q3aql #
|
|
|
|
# Contact: q3aql@protonmail.ch #
|
|
|
|
###############################################################
|
2021-03-26 21:04:55 +01:00
|
|
|
VERSION="7.1 (BETA)"
|
|
|
|
M_DATE="260321"
|
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="ks-zui"
|
|
|
|
|
|
|
|
# Command to run
|
|
|
|
${term} -T "${name_terminal}" -fa ${font} -fs ${size_font} -bg ${color_b} \
|
|
|
|
-fg ${color_f} -e ${command}
|