mirror of
https://github.com/smxi/inxi.git
synced 2024-11-16 16:21:39 +00:00
Major refactoring, variable cleanup, condition tests made more consistent.
Still to do, make consistent tests on arrays, those need some careful handling. More tightening of global/local variables.
This commit is contained in:
parent
07605806d7
commit
15912c0455
505
inxi
505
inxi
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
########################################################################
|
########################################################################
|
||||||
#### Script Name: inxi
|
#### Script Name: inxi
|
||||||
#### version: 0.1.33
|
#### version: 0.1.34
|
||||||
#### Date: October 28 2008
|
#### Date: October 29 2008
|
||||||
########################################################################
|
########################################################################
|
||||||
#### inxi is a fork of infobash, the original bash sys info script by locsmif
|
#### inxi is a fork of infobash, the original bash sys info script by locsmif
|
||||||
#### As time permits functionality and recoding will occur.
|
#### As time permits functionality and recoding will occur.
|
||||||
|
@ -38,13 +38,19 @@
|
||||||
## Variable initializations: null values
|
## Variable initializations: null values
|
||||||
DISTRO=''
|
DISTRO=''
|
||||||
DISTRO_FILE=''
|
DISTRO_FILE=''
|
||||||
DISTRO_GLOB=''
|
A_DISTRO_GLOB=''
|
||||||
IRC_CLIENT=''
|
IRC_CLIENT=''
|
||||||
IRC_CLIENT_VERSION=''
|
IRC_CLIENT_VERSION=''
|
||||||
|
|
||||||
|
## primary data array holders
|
||||||
|
A_CPU_DATA=''
|
||||||
|
A_GFX_DATA=''
|
||||||
|
A_NETWORK_DATA=''
|
||||||
|
|
||||||
# Variable initializations: constants
|
# Variable initializations: constants
|
||||||
ALLUP=0 # inxi hasn't been 'booted' yet.
|
ALLUP=0 # inxi hasn't been 'booted' yet.
|
||||||
CRAP=0 # New parameter
|
CRAP=0 # New parameter
|
||||||
|
CURRENT_KERNEL=$( uname -a | gawk '{print $1,$3,$(NF-1)}' )
|
||||||
DBI=0 # Debug Buffer Index, index into a debug buffer storing debug messages until infobash is 'all up'
|
DBI=0 # Debug Buffer Index, index into a debug buffer storing debug messages until infobash is 'all up'
|
||||||
DCOPOBJ="default"
|
DCOPOBJ="default"
|
||||||
DEBUG=0 # Set levels from 1-10
|
DEBUG=0 # Set levels from 1-10
|
||||||
|
@ -54,15 +60,18 @@ FLAG=0 # A throw-away 'flag' variable intended to be used throughout infobash
|
||||||
IBSHELL=0 # Running in a shell? Defaults to false, and is determined later.
|
IBSHELL=0 # Running in a shell? Defaults to false, and is determined later.
|
||||||
INDENT=14 # Default indentation level
|
INDENT=14 # Default indentation level
|
||||||
KONVI=0 # default to false, no konversation found
|
KONVI=0 # default to false, no konversation found
|
||||||
|
LSPCI=$( lspci -v | awk '{ gsub(/\(prog-if[^)]*\)/,""); print }' )
|
||||||
NO_CPU_COUNT=0 # Wether or not the string "dual" or similar is found in cpuinfo output. If so, avoid dups.
|
NO_CPU_COUNT=0 # Wether or not the string "dual" or similar is found in cpuinfo output. If so, avoid dups.
|
||||||
PARAMETER_LIMIT=30 # This is a variable that controls how many parameters infobash will parse in a /proc/<pid>/cmdline file before stopping.
|
PARAMETER_LIMIT=30 # This is a variable that controls how many parameters infobash will parse in a /proc/<pid>/cmdline file before stopping.
|
||||||
|
RUNLVL=0 # just setting this to 0 to initialize and avoid test errors
|
||||||
SHOW_HOST=1 # Set this to 0 to avoid printing the hostname
|
SHOW_HOST=1 # Set this to 0 to avoid printing the hostname
|
||||||
SHOW_IRC=2 # SHOW_IRC=1 to avoid showing the irc client version number, or SHOW_IRC=0 to disable client information completely.
|
SHOW_IRC=2 # SHOW_IRC=1 to avoid showing the irc client version number, or SHOW_IRC=0 to disable client information completely.
|
||||||
VERBOSITY_LEVEL=0 # Verbosity level defaults to 0, this can also be set with -v, -v2, -v3, etc as a parameter.
|
VERBOSITY_LEVEL=0 # Verbosity level defaults to 0, this can also be set with -v, -v2, -v3, etc as a parameter.
|
||||||
|
VERBOSITY_LEVELS=4 # Supported number of verbosity levels
|
||||||
|
|
||||||
if ! ((DEBUG))
|
# Reroute all error messages to the bitbucket (if not debugging)
|
||||||
|
if [ "$DEBUG" -eq 0 ]
|
||||||
then
|
then
|
||||||
# Reroute all error messages to the bitbucket (if not debugging)
|
|
||||||
exec 2>/dev/null
|
exec 2>/dev/null
|
||||||
fi
|
fi
|
||||||
#((DEBUG)) && exec 2>&1 # This is for debugging konversation
|
#((DEBUG)) && exec 2>&1 # This is for debugging konversation
|
||||||
|
@ -81,6 +90,7 @@ SCRIPT_PATH=$( dirname $0 )
|
||||||
SCRIPT_VERSION_NUMBER=$( grep -im 1 'version:' $SCRIPT_PATH/$SCRIPT_NAME | awk '{print $3}' )
|
SCRIPT_VERSION_NUMBER=$( grep -im 1 'version:' $SCRIPT_PATH/$SCRIPT_NAME | awk '{print $3}' )
|
||||||
SCRIPT_DATE=$( grep -im 1 'date:' $SCRIPT_PATH/$SCRIPT_NAME | awk '{print $3 " " $4 ", " $5}' )
|
SCRIPT_DATE=$( grep -im 1 'date:' $SCRIPT_PATH/$SCRIPT_NAME | awk '{print $3 " " $4 ", " $5}' )
|
||||||
MY_VERSION="$SCRIPT_NAME v:$SCRIPT_VERSION_NUMBER"
|
MY_VERSION="$SCRIPT_NAME v:$SCRIPT_VERSION_NUMBER"
|
||||||
|
KONVI_CFG="konversation/scripts/$SCRIPT_NAME.conf" # relative path to $(kde-config --path data)
|
||||||
|
|
||||||
## Script Localization
|
## Script Localization
|
||||||
LC_ALL="C" # Make sure every program speaks English.
|
LC_ALL="C" # Make sure every program speaks English.
|
||||||
|
@ -95,10 +105,9 @@ IRC_COLORS=" \x0314 \x0301 \x0304 \x0305 \x0309 \x0303 \x0308 \x
|
||||||
ANSI_COLORS="$ANSI_COLORS [1;34m [0;34m [1;35m [0;35m [1;36m [0;36m [1;37m [0;37m [0;37m"
|
ANSI_COLORS="$ANSI_COLORS [1;34m [0;34m [1;35m [0;35m [1;36m [0;36m [1;37m [0;37m [0;37m"
|
||||||
IRC_COLORS=" $IRC_COLORS \x0312 \x0302 \x0313 \x0306 \x0311 \x0310 \x0300 \x0315 \x03"
|
IRC_COLORS=" $IRC_COLORS \x0312 \x0302 \x0313 \x0306 \x0311 \x0310 \x0300 \x0315 \x03"
|
||||||
#ANSI_COLORS=($ANSI_COLORS); IRC_COLORS=($IRC_COLORS)
|
#ANSI_COLORS=($ANSI_COLORS); IRC_COLORS=($IRC_COLORS)
|
||||||
COLORS_AVAILABLE=(DGREY BLACK RED DRED GREEN DGREEN YELLOW DYELLOW BLUE DBLUE MAGENTA DMAGENTA CYAN DCYAN WHITE GREY NORMAL)
|
A_COLORS_AVAILABLE=( DGREY BLACK RED DRED GREEN DGREEN YELLOW DYELLOW BLUE DBLUE MAGENTA DMAGENTA CYAN DCYAN WHITE GREY NORMAL )
|
||||||
# See above for notes on EMPTY
|
# See above for notes on EMPTY
|
||||||
COLOR_SCHEMES=(EMPTY,EMPTY,EMPTY NORMAL,NORMAL,NORMAL BLUE,NORMAL,NORMAL GREEN,YELLOW,NORMAL DYELLOW,NORMAL,NORMAL CYAN,BLUE,NORMAL RED,NORMAL,NORMAL GREEN,NORMAL,NORMAL YELLOW,NORMAL,NORMAL GREEN,DGREEN,NORMAL BLUE,RED,NORMAL BLUE,NORMAL,RED YELLOW,WHITE,GREEN BLUE,NORMAL,GREEN DCYAN,NORMAL,DMAGENTA)
|
A_COLOR_SCHEMES=( EMPTY,EMPTY,EMPTY NORMAL,NORMAL,NORMAL BLUE,NORMAL,NORMAL GREEN,YELLOW,NORMAL DYELLOW,NORMAL,NORMAL CYAN,BLUE,NORMAL RED,NORMAL,NORMAL GREEN,NORMAL,NORMAL YELLOW,NORMAL,NORMAL GREEN,DGREEN,NORMAL BLUE,RED,NORMAL BLUE,NORMAL,RED YELLOW,WHITE,GREEN BLUE,NORMAL,GREEN DCYAN,NORMAL,DMAGENTA )
|
||||||
|
|
||||||
|
|
||||||
## Distro Data
|
## Distro Data
|
||||||
# In cases of derived distros where the version file of the base distro can also be found under /etc,
|
# In cases of derived distros where the version file of the base distro can also be found under /etc,
|
||||||
|
@ -108,25 +117,21 @@ DISTROS_PRIMARY="gentoo-release mandrake-release redhat-release slackware-versio
|
||||||
# debian_version excluded from DISTROS_PRIMARY so Debian can fall through to /etc/issue detection. Same goes for Ubuntu.
|
# debian_version excluded from DISTROS_PRIMARY so Debian can fall through to /etc/issue detection. Same goes for Ubuntu.
|
||||||
DISTROS_BLIST="debian_version ubuntu_version"
|
DISTROS_BLIST="debian_version ubuntu_version"
|
||||||
|
|
||||||
|
## Bans Data
|
||||||
# Precede a banword with $'\2' to prevent it from being subject to automated escaping by the make_bans routine
|
# Precede a banword with $'\2' to prevent it from being subject to automated escaping by the make_bans routine
|
||||||
# $'\1' gets weird results :
|
# $'\1' gets weird results :
|
||||||
# user@host $ ARR=($'\x01'"one two" three four); echo ${ARR[0]} | hd -v
|
# user@host $ ARR=($'\x01'"one two" three four); echo ${ARR[0]} | hd -v
|
||||||
# 00000000 01 01 6f 6e 65 20 74 77 6f 0a |..one two.|
|
# 00000000 01 01 6f 6e 65 20 74 77 6f 0a |..one two.|
|
||||||
NORMAL_BANS=( corporation communications technologies technology group $'\2'"\<ltd\>" ltd. $'\2'"\<inc\>" inc. $'\2'\<co\> co. "(tm)" "(r)" $'\2'"\(rev ..\)" )
|
A_NORMAL_BANS=( corporation communications technologies technology group $'\2'"\<ltd\>" ltd. $'\2'"\<inc\>" inc. $'\2'\<co\> co. "(tm)" "(r)" $'\2'"\(rev ..\)" )
|
||||||
CPU_BANS=( cpu processor $'\2'"[0-9.]+ *[MmGg][Hh][Zz]" )
|
A_CPU_BANS=( cpu processor $'\2'"[0-9.]+ *[MmGg][Hh][Zz]" )
|
||||||
|
|
||||||
|
## Source global config overrides
|
||||||
|
if [ -s /etc/$SCRIPT_NAME.conf ]
|
||||||
KONVI_CFG="konversation/scripts/$SCRIPT_NAME.conf" # relative path to $(kde-config --path data)
|
|
||||||
|
|
||||||
# Source global config overrides
|
|
||||||
if [[ -s /etc/$SCRIPT_NAME.conf ]]
|
|
||||||
then
|
then
|
||||||
source /etc/$SCRIPT_NAME.conf
|
source /etc/$SCRIPT_NAME.conf
|
||||||
fi
|
fi
|
||||||
# Source user config overrides
|
# Source user config overrides
|
||||||
if [[ -s $HOME/.$SCRIPT_NAME ]]
|
if [ -s $HOME/.$SCRIPT_NAME ]
|
||||||
then
|
then
|
||||||
source $HOME/.$SCRIPT_NAME
|
source $HOME/.$SCRIPT_NAME
|
||||||
fi
|
fi
|
||||||
|
@ -155,7 +160,7 @@ error_handler()
|
||||||
print_screen_output "$SCRIPT_NAME: error in colorscheme - unsupported number: $2"
|
print_screen_output "$SCRIPT_NAME: error in colorscheme - unsupported number: $2"
|
||||||
;;
|
;;
|
||||||
4)
|
4)
|
||||||
print_screen_output "$SCRIPT_NAME: unknown verbosity level $2"
|
print_screen_output "$SCRIPT_NAME: unsupported verbosity level $2"
|
||||||
;;
|
;;
|
||||||
5)
|
5)
|
||||||
print_screen_output "$SCRIPT_NAME: dependency not met: $2 not found in path"
|
print_screen_output "$SCRIPT_NAME: dependency not met: $2 not found in path"
|
||||||
|
@ -233,9 +238,9 @@ print_screen_output()
|
||||||
# echo -ne "$1\n"
|
# echo -ne "$1\n"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# this removes newline and pipes.
|
||||||
remove_erroneous_chars()
|
remove_erroneous_chars()
|
||||||
{
|
{
|
||||||
## this removes newline and pipes
|
|
||||||
## RS is input record separator
|
## RS is input record separator
|
||||||
## gsub is substitute;
|
## gsub is substitute;
|
||||||
gawk 'BEGIN { RS="" } { gsub(/\n$/,""); ## (newline; end of string) with (nothing)
|
gawk 'BEGIN { RS="" } { gsub(/\n$/,""); ## (newline; end of string) with (nothing)
|
||||||
|
@ -246,10 +251,6 @@ remove_erroneous_chars()
|
||||||
gsub(/^ +| +$/, ""); ## (pipe char) with (nothing)
|
gsub(/^ +| +$/, ""); ## (pipe char) with (nothing)
|
||||||
printf $0 }' "$1" ## prints (returns) cleaned input
|
printf $0 }' "$1" ## prints (returns) cleaned input
|
||||||
}
|
}
|
||||||
# remove_erroneous_chars()
|
|
||||||
# {
|
|
||||||
# gawk 'BEGIN { RS="" } { gsub(/\n$/,""); gsub(/\n/," "); gsub(/^ *| *$/, ""); gsub(/ +/, " "); printf $0 }' "$1"
|
|
||||||
# }
|
|
||||||
|
|
||||||
# Enforce boilerplate and buzzword filters
|
# Enforce boilerplate and buzzword filters
|
||||||
sanitize_characters()
|
sanitize_characters()
|
||||||
|
@ -277,13 +278,14 @@ check_script_depends()
|
||||||
error_handler 6
|
error_handler 6
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ((X))
|
if [ "$X" -gt 0 ]
|
||||||
then
|
then
|
||||||
for app_name in xrandr xdpyinfo glxinfo
|
for app_name in xrandr xdpyinfo glxinfo
|
||||||
do
|
do
|
||||||
type -p $app_name >/dev/null || { script_debugger "inxi: Resuming in non X mode: $app_name not found in path"; X=0; break; }
|
type -p $app_name >/dev/null || { script_debugger "inxi: Resuming in non X mode: $app_name not found in path"; X=0; break; }
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
app_name=''
|
app_name=''
|
||||||
# bc removed from deps for now
|
# bc removed from deps for now
|
||||||
for app_name in df free gawk grep hostname lspci ps readlink runlevel tr uname uptime wc
|
for app_name in df free gawk grep hostname lspci ps readlink runlevel tr uname uptime wc
|
||||||
|
@ -317,47 +319,48 @@ set_color_scheme()
|
||||||
{
|
{
|
||||||
local i='' script_colors='' color_codes=''
|
local i='' script_colors='' color_codes=''
|
||||||
|
|
||||||
if [[ $1 -ge ${#COLOR_SCHEMES[@]} ]]
|
if [[ $1 -ge ${#A_COLOR_SCHEMES[@]} ]]
|
||||||
then
|
then
|
||||||
set -- 1
|
set -- 1
|
||||||
fi
|
fi
|
||||||
SCHEME="$1" # Set a global variable to allow checking for chosen scheme later
|
SCHEME="$1" # Set a global variable to allow checking for chosen scheme later
|
||||||
if ((IBSHELL))
|
if [ "$IBSHELL" -gt 0 ]
|
||||||
then
|
then
|
||||||
color_codes=($ANSI_COLORS)
|
color_codes=($ANSI_COLORS)
|
||||||
else
|
else
|
||||||
color_codes=($IRC_COLORS)
|
color_codes=($IRC_COLORS)
|
||||||
fi
|
fi
|
||||||
for (( i=0; i < ${#COLORS_AVAILABLE[@]}; i++ ))
|
for (( i=0; i < ${#A_COLORS_AVAILABLE[@]}; i++ ))
|
||||||
do
|
do
|
||||||
eval "${COLORS_AVAILABLE[i]}=\"${color_codes[i]}\""
|
eval "${A_COLORS_AVAILABLE[i]}=\"${color_codes[i]}\""
|
||||||
done
|
done
|
||||||
IFS=","
|
IFS=","
|
||||||
script_colors=(${COLOR_SCHEMES[$1]})
|
script_colors=(${A_COLOR_SCHEMES[$1]})
|
||||||
IFS="$OIFS"
|
IFS="$OIFS"
|
||||||
C1="${!script_colors[0]}"
|
C1="${!script_colors[0]}"
|
||||||
C2="${!script_colors[1]}"
|
C2="${!script_colors[1]}"
|
||||||
CN="${!script_colors[2]}"
|
CN="${!script_colors[2]}"
|
||||||
((CSCHEME++))
|
((CSCHEME++)) ## note: why is this? ##
|
||||||
}
|
}
|
||||||
|
|
||||||
# Parse the null separated commandline under /proc/<pid passed in $1>/cmdline
|
# Parse the null separated commandline under /proc/<pid passed in $1>/cmdline
|
||||||
get_cmdline()
|
get_cmdline()
|
||||||
{
|
{
|
||||||
local i=0
|
local i=0
|
||||||
if [[ ! -e /proc/$1/cmdline ]]
|
|
||||||
|
if [ ! -e /proc/$1/cmdline ]
|
||||||
then
|
then
|
||||||
{ echo 0; return; }
|
{ echo 0; return; }
|
||||||
fi
|
fi
|
||||||
##print_screen_output "Marker"
|
##print_screen_output "Marker"
|
||||||
##print_screen_output "\$1='$1' -=- $(< /proc/$1/cmdline)"
|
##print_screen_output "\$1='$1' -=- $(< /proc/$1/cmdline)"
|
||||||
unset CMDL
|
unset CMDL
|
||||||
while read -d $'\0' L && [[ $i -lt 32 ]]
|
while read -d $'\0' L && [ "$i" -lt 32 ]
|
||||||
do
|
do
|
||||||
CMDL[i++]="$L"
|
CMDL[i++]="$L" ## note: make sure this is valid ##
|
||||||
done </proc/$1/cmdline
|
done </proc/$1/cmdline
|
||||||
##print_screen_output "\$I='$I'"
|
##print_screen_output "\$i='$i'"
|
||||||
if ! ((i))
|
if [ "$i" -eq 0 ]
|
||||||
then
|
then
|
||||||
CMDL[0]=$(< /proc/$1/cmdline)
|
CMDL[0]=$(< /proc/$1/cmdline)
|
||||||
if [[ -n ${CMDL[0]} ]]
|
if [[ -n ${CMDL[0]} ]]
|
||||||
|
@ -371,11 +374,11 @@ get_cmdline()
|
||||||
# Get the parameters
|
# Get the parameters
|
||||||
get_parameters()
|
get_parameters()
|
||||||
{
|
{
|
||||||
if [[ -z $1 ]]
|
if [ -z "$1" ]
|
||||||
then
|
then
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
while [[ -n $1 ]]
|
while [ -n "$1" ]
|
||||||
do
|
do
|
||||||
case $1 in
|
case $1 in
|
||||||
--crap)
|
--crap)
|
||||||
|
@ -385,7 +388,7 @@ get_parameters()
|
||||||
DEBUG=1
|
DEBUG=1
|
||||||
exec 2>&1
|
exec 2>&1
|
||||||
;;
|
;;
|
||||||
-v|-v[1-9]|--verbose)
|
-v|-v[0-9]|--verbose)
|
||||||
if [[ ${#1} -eq 3 ]]
|
if [[ ${#1} -eq 3 ]]
|
||||||
then
|
then
|
||||||
VERBOSITY_LEVEL="${1:2}"
|
VERBOSITY_LEVEL="${1:2}"
|
||||||
|
@ -398,7 +401,7 @@ get_parameters()
|
||||||
VERBOSITY_LEVEL="$1"
|
VERBOSITY_LEVEL="$1"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
echo "$VERBOSITY_LEVEL" | grep -q '^[1-4]$' || error_handler 4 "$VERBOSITY_LEVEL"
|
grep -q "^[0-${VERBOSITY_LEVELS}]$" <<< $VERBOSITY_LEVEL || error_handler 4 "$VERBOSITY_LEVEL"
|
||||||
;;
|
;;
|
||||||
-U)
|
-U)
|
||||||
print_screen_output "Updating $SCRIPT_NAME now..."
|
print_screen_output "Updating $SCRIPT_NAME now..."
|
||||||
|
@ -407,15 +410,7 @@ get_parameters()
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
--version)
|
--version)
|
||||||
print_screen_output "InfoBash, the universal, portable, system info script for irc."
|
print_version_info
|
||||||
print_screen_output "Tested with Irssi, Xchat, Konversation, BitchX, KSirc, ircII,"
|
|
||||||
print_screen_output "Gaim/Pidgin, Weechat, KVIrc and Kopete."
|
|
||||||
print_screen_output "Copyright (C) 2005-2007 Michiel de Boer a.k.a. locsmif <infobash@rebelhomicide.demon.nl>"
|
|
||||||
print_screen_output " "
|
|
||||||
print_screen_output "This program is free software; you can redistribute it and/or modify"
|
|
||||||
print_screen_output "it under the terms of the GNU General Public License as published by"
|
|
||||||
print_screen_output "the Free Software Foundation; either version 3 of the License, or"
|
|
||||||
print_screen_output "(at your option) any later version."
|
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
[0-9]|[0-9][0-9])
|
[0-9]|[0-9][0-9])
|
||||||
|
@ -443,16 +438,34 @@ show_options()
|
||||||
{
|
{
|
||||||
print_screen_output "$SCRIPT_NAME supports the following options:"
|
print_screen_output "$SCRIPT_NAME supports the following options:"
|
||||||
print_screen_output "--crap Overrides defective or corrupted distro ID file"
|
print_screen_output "--crap Overrides defective or corrupted distro ID file"
|
||||||
|
print_screen_output ""
|
||||||
print_screen_output "-d --debug Triggers script debugger output."
|
print_screen_output "-d --debug Triggers script debugger output."
|
||||||
print_screen_output "-v -v[1-9] Script verbosity levels."
|
print_screen_output ""
|
||||||
print_screen_output " --verbose "
|
print_screen_output "-v -v[0-${VERBOSITY_LEVELS}] Script verbosity levels. Supported levels: 0 - ${VERBOSITY_LEVELS}"
|
||||||
|
print_screen_output " --verbose Examples: $SCRIPT_NAME -v | $SCRIPT_NAME -v 4 | $SCRIPT_NAME --verbose 3"
|
||||||
|
print_screen_output ""
|
||||||
print_screen_output "-U Autoupdate script. Note: if you installed as root, you"
|
print_screen_output "-U Autoupdate script. Note: if you installed as root, you"
|
||||||
print_screen_output " must be root to update, otherwise user is fine."
|
print_screen_output " must be root to update, otherwise user is fine."
|
||||||
|
print_screen_output ""
|
||||||
print_screen_output "--version $SCRIPT_NAME information."
|
print_screen_output "--version $SCRIPT_NAME information."
|
||||||
|
print_screen_output ""
|
||||||
print_screen_output "0-99 Sets color scheme to use. This will be changed soon."
|
print_screen_output "0-99 Sets color scheme to use. This will be changed soon."
|
||||||
print_screen_output ""
|
print_screen_output ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
print_version_info()
|
||||||
|
{
|
||||||
|
print_screen_output "InfoBash, the universal, portable, system info script for irc."
|
||||||
|
print_screen_output "Tested with Irssi, Xchat, Konversation, BitchX, KSirc, ircII,"
|
||||||
|
print_screen_output "Gaim/Pidgin, Weechat, KVIrc and Kopete."
|
||||||
|
print_screen_output "Copyright (C) 2005-2007 Michiel de Boer a.k.a. locsmif <infobash@rebelhomicide.demon.nl>"
|
||||||
|
print_screen_output " "
|
||||||
|
print_screen_output "This program is free software; you can redistribute it and/or modify"
|
||||||
|
print_screen_output "it under the terms of the GNU General Public License as published by"
|
||||||
|
print_screen_output "the Free Software Foundation; either version 3 of the License, or"
|
||||||
|
print_screen_output "(at your option) any later version."
|
||||||
|
}
|
||||||
|
|
||||||
########################################################################
|
########################################################################
|
||||||
#### MAIN FUNCTIONS
|
#### MAIN FUNCTIONS
|
||||||
########################################################################
|
########################################################################
|
||||||
|
@ -464,7 +477,7 @@ show_options()
|
||||||
# Determine where infobash was run from
|
# Determine where infobash was run from
|
||||||
get_start_source()
|
get_start_source()
|
||||||
{
|
{
|
||||||
local irc_client_path='' irc_client_path_lower='' non_native_konvi=''
|
local irc_client_path='' irc_client_path_lower='' non_native_konvi='' i=''
|
||||||
|
|
||||||
if tty >/dev/null
|
if tty >/dev/null
|
||||||
then
|
then
|
||||||
|
@ -558,9 +571,9 @@ get_start_source()
|
||||||
*perl*)
|
*perl*)
|
||||||
unset IRC_CLIENT_VERSION # KSirc is one of the possibilities now. KSirc is a wrapper around dsirc, a perl client
|
unset IRC_CLIENT_VERSION # KSirc is one of the possibilities now. KSirc is a wrapper around dsirc, a perl client
|
||||||
get_cmdline $PPID
|
get_cmdline $PPID
|
||||||
for (( I=0; I<=$CMDLMAX; I++ ))
|
for (( i=0; i <= $CMDLMAX; i++ ))
|
||||||
do
|
do
|
||||||
case ${CMDL[I]} in
|
case ${CMDL[i]} in
|
||||||
*dsirc*)
|
*dsirc*)
|
||||||
IRC_CLIENT="KSirc"
|
IRC_CLIENT="KSirc"
|
||||||
# Dynamic runpath detection is too complex with KSirc, because KSirc is started from
|
# Dynamic runpath detection is too complex with KSirc, because KSirc is started from
|
||||||
|
@ -576,7 +589,7 @@ get_start_source()
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
if [[ -z $IRC_CLIENT_VERSION ]]
|
if [ -z "$IRC_CLIENT_VERSION" ]
|
||||||
then
|
then
|
||||||
IRC_CLIENT="Unknown Perl client"
|
IRC_CLIENT="Unknown Perl client"
|
||||||
fi
|
fi
|
||||||
|
@ -590,7 +603,7 @@ get_start_source()
|
||||||
unset IRC_CLIENT_VERSION
|
unset IRC_CLIENT_VERSION
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
if [[ $SHOW_IRC -lt 2 ]]
|
if [ "$SHOW_IRC" -lt 2 ]
|
||||||
then
|
then
|
||||||
unset IRC_CLIENT_VERSION
|
unset IRC_CLIENT_VERSION
|
||||||
fi
|
fi
|
||||||
|
@ -635,11 +648,9 @@ set_calculated_variables()
|
||||||
##/bin/sh -c 'echo "PATH in subshell=\"$PATH\""'
|
##/bin/sh -c 'echo "PATH in subshell=\"$PATH\""'
|
||||||
|
|
||||||
# Do this after sourcing of config overrides so user can customize banwords
|
# Do this after sourcing of config overrides so user can customize banwords
|
||||||
NORMAL_BANS=$( make_bans "${NORMAL_BANS[@]}" ) # Contrary to my previous belief, "${ARR[@]}" passes a quoted list, not one string
|
A_NORMAL_BANS=$( make_bans "${A_NORMAL_BANS[@]}" ) # Contrary to my previous belief, "${ARR[@]}" passes a quoted list, not one string
|
||||||
CPU_BANS=$( make_bans "${CPU_BANS[@]}" )
|
A_CPU_BANS=$( make_bans "${A_CPU_BANS[@]}" )
|
||||||
##echo "NORMAL_BANS='$NORMAL_BANS'"
|
##echo "A_NORMAL_BANS='$A_NORMAL_BANS'"
|
||||||
|
|
||||||
LSPCI=$( lspci -v | awk '{ gsub(/\(prog-if[^)]*\)/,""); print }' )
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -654,21 +665,21 @@ get_distro_data()
|
||||||
unset DISTRO
|
unset DISTRO
|
||||||
shopt -s nullglob
|
shopt -s nullglob
|
||||||
cd /etc
|
cd /etc
|
||||||
DISTRO_GLOB=(*[-_]{release,version})
|
A_DISTRO_GLOB=(*[-_]{release,version})
|
||||||
cd "$OLDPWD"
|
cd "$OLDPWD"
|
||||||
shopt -u nullglob
|
shopt -u nullglob
|
||||||
|
|
||||||
if (( ${#DISTRO_GLOB[@]} == 1 ))
|
if (( ${#A_DISTRO_GLOB[@]} == 1 ))
|
||||||
then
|
then
|
||||||
DISTRO_FILE="${DISTRO_GLOB}"
|
DISTRO_FILE="${A_DISTRO_GLOB}"
|
||||||
elif (( ${#DISTRO_GLOB[@]} > 1 ))
|
elif (( ${#A_DISTRO_GLOB[@]} > 1 ))
|
||||||
then
|
then
|
||||||
for i in $DISTROS_DERIVED $DISTROS_PRIMARY
|
for i in $DISTROS_DERIVED $DISTROS_PRIMARY
|
||||||
do
|
do
|
||||||
# Only echo works with ${var[@]}, not print_screen_output() or script_debugger()
|
# Only echo works with ${var[@]}, not print_screen_output() or script_debugger()
|
||||||
# This is a known bug, search for the word "strange" inside comments
|
# This is a known bug, search for the word "strange" inside comments
|
||||||
# echo "i='$i' DISTRO_GLOB[@]='${DISTRO_GLOB[@]}'"
|
# echo "i='$i' A_DISTRO_GLOB[@]='${A_DISTRO_GLOB[@]}'"
|
||||||
if [[ " ${DISTRO_GLOB[@]} " == *" $i "* ]]
|
if [[ " ${A_DISTRO_GLOB[@]} " == *" $i "* ]]
|
||||||
then
|
then
|
||||||
DISTRO_FILE="${i}"
|
DISTRO_FILE="${i}"
|
||||||
break
|
break
|
||||||
|
@ -686,17 +697,20 @@ get_distro_data()
|
||||||
gsub(/^ +| +$/,"");
|
gsub(/^ +| +$/,"");
|
||||||
print }' "/etc/${DISTRO_FILE}" )
|
print }' "/etc/${DISTRO_FILE}" )
|
||||||
fi
|
fi
|
||||||
((${#DISTRO} > 80 && ! CRAP)) && DISTRO="${RED}/etc/${DISTRO_FILE} corrupted, use --crap to override${NORMAL}"
|
if (( ${#DISTRO} > 80 && ! CRAP ))
|
||||||
|
then
|
||||||
|
DISTRO="${RED}/etc/${DISTRO_FILE} corrupted, use --crap to override${NORMAL}"
|
||||||
|
fi
|
||||||
|
## note: figure out a more readable way to achieve whatever is intended here ##
|
||||||
: ${DISTRO:=Unknown distro o_O}
|
: ${DISTRO:=Unknown distro o_O}
|
||||||
}
|
}
|
||||||
|
|
||||||
get_cpu_data()
|
get_cpu_data()
|
||||||
{
|
{
|
||||||
local i='' j='' cpu_array_nu=''
|
local i='' j='' cpu_array_nu='' a_cpu_working='' multi_cpu=''
|
||||||
OSKERN=$( uname -a | gawk '{print $1,$3,$(NF-1)}' )
|
|
||||||
|
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
CPU=($(gawk -F': ' '
|
A_CPU_DATA=($(gawk -F': ' '
|
||||||
# TAKE NOTE: \t+ will work for /proc/cpuinfo, but SOME ARBITRARY FILE used for TESTING might contain SPACES!
|
# TAKE NOTE: \t+ will work for /proc/cpuinfo, but SOME ARBITRARY FILE used for TESTING might contain SPACES!
|
||||||
# Therefore PATCH to use [ \t]+ when TESTING!
|
# Therefore PATCH to use [ \t]+ when TESTING!
|
||||||
/^processor\t+:/ { nr = $NF }
|
/^processor\t+:/ { nr = $NF }
|
||||||
|
@ -741,31 +755,32 @@ get_cpu_data()
|
||||||
|
|
||||||
IFS="$OIFS"
|
IFS="$OIFS"
|
||||||
|
|
||||||
for (( i=0; i < ${#CPU[@]} - 1; i++))
|
for (( i=0; i < ${#A_CPU_DATA[@]} - 1; i++ ))
|
||||||
do
|
do
|
||||||
IFS=","
|
IFS=","
|
||||||
CPUTMP=(${CPU[i]})
|
a_cpu_working=(${A_CPU_DATA[i]})
|
||||||
IFS="$OIFS"
|
IFS="$OIFS"
|
||||||
unset CPU[i]
|
unset A_CPU_DATA[i]
|
||||||
CPUTMP[0]=$( sanitize_characters NORMAL_BANS "${CPUTMP[0]}" )
|
a_cpu_working[0]=$( sanitize_characters A_NORMAL_BANS "${a_cpu_working[0]}" )
|
||||||
CPUTMP[0]=$( sanitize_characters CPU_BANS "${CPUTMP[0]}" )
|
a_cpu_working[0]=$( sanitize_characters A_CPU_BANS "${a_cpu_working[0]}" )
|
||||||
# I use all these loops so I can easily extend the cpu array created in the awk script above with more fields per cpu.
|
# I use all these loops so I can easily extend the cpu array created in the awk script above with more fields per cpu.
|
||||||
for (( j=0; j < ${#CPUTMP[@]}; j++ ))
|
for (( j=0; j < ${#a_cpu_working[@]}; j++ ))
|
||||||
do
|
do
|
||||||
if ((j))
|
if [ "$j" -gt 0 ]
|
||||||
then
|
then
|
||||||
CPU[i]="${CPU[i]},${CPUTMP[j]}"
|
A_CPU_DATA[i]="${A_CPU_DATA[i]},${a_cpu_working[j]}"
|
||||||
else
|
else
|
||||||
CPU[i]="${CPUTMP[j]}"
|
A_CPU_DATA[i]="${a_cpu_working[j]}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
# test for multi core cpu present
|
||||||
if echo "${CPU[@]}" | grep -qi 'dual\|triple\|quad'
|
multi_cpu=$( grep -i 'dual\|triple\|quad' <<< "${A_CPU_DATA[@]}" )
|
||||||
|
if [ -n "$multi_cpu" ]
|
||||||
then
|
then
|
||||||
NO_CPU_COUNT=1
|
NO_CPU_COUNT=1
|
||||||
else
|
else
|
||||||
case $(( ${#CPU[@]}-1 )) in
|
case $(( ${#A_CPU_DATA[@]}-1 )) in
|
||||||
2)
|
2)
|
||||||
CPU2="Dual"
|
CPU2="Dual"
|
||||||
;;
|
;;
|
||||||
|
@ -776,7 +791,7 @@ get_cpu_data()
|
||||||
CPU2="Quad"
|
CPU2="Quad"
|
||||||
;;
|
;;
|
||||||
[5-9]|[1-9][0-9])
|
[5-9]|[1-9][0-9])
|
||||||
CPU2="${#CPU[@]}x"
|
CPU2="${#A_CPU_DATA[@]}x"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
unset CPU2
|
unset CPU2
|
||||||
|
@ -785,19 +800,20 @@ get_cpu_data()
|
||||||
fi
|
fi
|
||||||
|
|
||||||
IFS=","
|
IFS=","
|
||||||
CPUTMP=(${CPU[0]})
|
a_cpu_working=(${A_CPU_DATA[0]})
|
||||||
IFS="$OIFS"
|
IFS="$OIFS"
|
||||||
# For the short line
|
# For the short line
|
||||||
CPUMODEL="${CPU2}${CPU2+ }${CPUTMP[0]}" # clocked at [${CPU[${#CPU[@]}-1]}]" # old CPU2
|
CPUMODEL="${CPU2}${CPU2+ }${a_cpu_working[0]}" # clocked at [${CPU[${#CPU[@]}-1]}]" # old CPU2
|
||||||
cpu_array_nu=$(( ${#CPU[@]} - 1 ))
|
# set count first, this avoids an syntax highlighting error with nested {{...}}
|
||||||
CPUCLOCK="${CPU[$cpu_array_nu]}" # old CPU3
|
cpu_array_nu=$(( ${#A_CPU_DATA[@]} - 1 ))
|
||||||
CPUFLAGS="${CPUTMP[3]}" # old CPU4
|
CPUCLOCK="${A_CPU_DATA[$cpu_array_nu]}" # old CPU3
|
||||||
|
CPUFLAGS="${a_cpu_working[3]}" # old CPU4
|
||||||
# nx = AMD stack protection extensions
|
# nx = AMD stack protection extensions
|
||||||
# lm = Intel 64bit extensions
|
# lm = Intel 64bit extensions
|
||||||
# sse, sse2, pni = sse1,2,3 gfx extensions
|
# sse, sse2, pni = sse1,2,3 gfx extensions
|
||||||
# svm = AMD pacifica virtualization extensions
|
# svm = AMD pacifica virtualization extensions
|
||||||
# vmx = Intel IVT (vanderpool) virtualization extensions
|
# vmx = Intel IVT (vanderpool) virtualization extensions
|
||||||
CPUFLAGS=$(echo "$CPUFLAGS" | awk '
|
CPUFLAGS=$( echo "$CPUFLAGS" | awk '
|
||||||
BEGIN {
|
BEGIN {
|
||||||
RS=" "
|
RS=" "
|
||||||
ssel["sse"] = 1
|
ssel["sse"] = 1
|
||||||
|
@ -824,7 +840,7 @@ get_cpu_data()
|
||||||
' )
|
' )
|
||||||
|
|
||||||
#grep -oE '\<(nx|lm|sse[0-9]?|pni|svm|vmx)\>' | tr '\n' ' '))
|
#grep -oE '\<(nx|lm|sse[0-9]?|pni|svm|vmx)\>' | tr '\n' ' '))
|
||||||
if [[ -z $CPUFLAGS ]]
|
if [ -z "$CPUFLAGS" ]
|
||||||
then
|
then
|
||||||
CPUFLAGS="-"
|
CPUFLAGS="-"
|
||||||
fi
|
fi
|
||||||
|
@ -832,18 +848,20 @@ get_cpu_data()
|
||||||
|
|
||||||
get_hard_drive_data()
|
get_hard_drive_data()
|
||||||
{
|
{
|
||||||
for I in /proc/ide/ide*/hd*
|
local disk='' i=''
|
||||||
|
|
||||||
|
for disk in /proc/ide/ide*/hd*
|
||||||
do
|
do
|
||||||
if [[ -e $I/media && $( remove_erroneous_chars $I/media ) = disk ]]
|
if [[ -e $disk/media && $( remove_erroneous_chars $disk/media ) = disk ]]
|
||||||
then
|
then
|
||||||
# BUGFIX: Ran into a debian sarge kernel that did not have the "capacity" file in the hd* directories
|
# BUGFIX: Ran into a debian sarge kernel that did not have the "capacity" file in the hd* directories
|
||||||
if [[ ! -e $I/capacity ]]
|
if [[ ! -e $disk/capacity ]]
|
||||||
then
|
then
|
||||||
CAP=0
|
CAP=0
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
(( CAP+=$( remove_erroneous_chars $I/capacity ) ))
|
(( CAP+=$( remove_erroneous_chars $disk/capacity ) ))
|
||||||
HDDMOD="${HDDMOD}${HDDMOD+,}$( remove_erroneous_chars $I/model )"
|
HDDMOD="${HDDMOD}${HDDMOD+,}$( remove_erroneous_chars $disk/model )"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -873,9 +891,9 @@ get_hard_drive_data()
|
||||||
' /proc/scsi/scsi))
|
' /proc/scsi/scsi))
|
||||||
IFS="$OIFS"
|
IFS="$OIFS"
|
||||||
|
|
||||||
for (( I=0; I < ${#THDD[@]}; I++ ))
|
for (( i=0; i < ${#THDD[@]}; i++ ))
|
||||||
do
|
do
|
||||||
HDDMOD="${HDDMOD}${HDDMOD+,}${THDD[I]}"
|
HDDMOD="${HDDMOD}${HDDMOD+,}${THDD[i]}"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -889,14 +907,14 @@ get_hard_drive_data()
|
||||||
|
|
||||||
##print_screen_output "HDDCAP1=\"$HDDCAP1\" HDDCAP2=\"$HDDCAP2"" ; exit
|
##print_screen_output "HDDCAP1=\"$HDDCAP1\" HDDCAP2=\"$HDDCAP2"" ; exit
|
||||||
HDD=0
|
HDD=0
|
||||||
for I in ${!HDDCAP*}
|
for i in ${!HDDCAP*}
|
||||||
do
|
do
|
||||||
if [[ ${!I} -gt $HDD ]]
|
if [[ ${!i} -gt $HDD ]]
|
||||||
then
|
then
|
||||||
HDD="${!I}"
|
HDD="${!i}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
if ((HDD))
|
if [ "$HDD" -gt 0 ]
|
||||||
then
|
then
|
||||||
HDDUSG=$( df | gawk '
|
HDDUSG=$( df | gawk '
|
||||||
p {
|
p {
|
||||||
|
@ -939,17 +957,19 @@ get_processes_uptime()
|
||||||
|
|
||||||
get_graphics_data()
|
get_graphics_data()
|
||||||
{
|
{
|
||||||
|
local i=''
|
||||||
|
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
GFX=($( echo "$LSPCI" | gawk -F': ' '/VGA compatible controller/ { print $NF }' ))
|
A_GFX_DATA=($( echo "$LSPCI" | gawk -F': ' '/VGA compatible controller/ { print $NF }' ))
|
||||||
IFS="$OIFS"
|
IFS="$OIFS"
|
||||||
for (( I=0; I < ${#GFX[@]}; I++ ))
|
for (( i=0; i < ${#GFX[@]}; i++ ))
|
||||||
do
|
do
|
||||||
GFX[I]=$( sanitize_characters NORMAL_BANS "${GFX[I]}" )
|
A_GFX_DATA[i]=$( sanitize_characters A_NORMAL_BANS "${A_GFX_DATA[i]}" )
|
||||||
done
|
done
|
||||||
|
|
||||||
# GFXMEM is UNUSED at the moment, because it shows AGP aperture size, which is not necessarily equal to GFX memory..
|
# GFXMEM is UNUSED at the moment, because it shows AGP aperture size, which is not necessarily equal to GFX memory..
|
||||||
# GFXMEM="size=[$(echo "$LSPCI" | gawk '/VGA/{while (!/^$/) {getline;if (/size=[0-9][0-9]*M/) {size2=gensub(/.*\[size=([0-9]+)M\].*/,"\\1","g",$0);if (size<size2){size=size2}}}}END{print size2}')M]"
|
# GFXMEM="size=[$(echo "$LSPCI" | gawk '/VGA/{while (!/^$/) {getline;if (/size=[0-9][0-9]*M/) {size2=gensub(/.*\[size=([0-9]+)M\].*/,"\\1","g",$0);if (size<size2){size=size2}}}}END{print size2}')M]"
|
||||||
if ((X))
|
if [ "$X" -gt 0 ]
|
||||||
then
|
then
|
||||||
# Added the two ?'s , because the resolution is now reported without spaces around the 'x', as in
|
# Added the two ?'s , because the resolution is now reported without spaces around the 'x', as in
|
||||||
# 1400x1050 instead of 1400 x 1050. Change as of X.org version 1.3.0
|
# 1400x1050 instead of 1400 x 1050. Change as of X.org version 1.3.0
|
||||||
|
@ -965,7 +985,7 @@ get_graphics_data()
|
||||||
}
|
}
|
||||||
' )
|
' )
|
||||||
|
|
||||||
if [[ -z $RES ]]
|
if [ -z "$RES" ]
|
||||||
then
|
then
|
||||||
RES=$( xdpyinfo | gawk '/dimensions/ { print $2 }' )
|
RES=$( xdpyinfo | gawk '/dimensions/ { print $2 }' )
|
||||||
fi
|
fi
|
||||||
|
@ -984,7 +1004,7 @@ get_graphics_data()
|
||||||
# Later on, the normal textual version string returned, e.g. like: X.Org version: 6.8.2
|
# Later on, the normal textual version string returned, e.g. like: X.Org version: 6.8.2
|
||||||
# A failover mechanism is in place. (if $XVERNUM is empty, the release number is parsed instead)
|
# A failover mechanism is in place. (if $XVERNUM is empty, the release number is parsed instead)
|
||||||
XVERNUM=$( xdpyinfo | awk '/version:/ { print $NF }' )
|
XVERNUM=$( xdpyinfo | awk '/version:/ { print $NF }' )
|
||||||
if [[ -z $XVERNUM ]]
|
if [ -z "$XVERNUM" ]
|
||||||
then
|
then
|
||||||
XVERNUM=$(xdpyinfo | gawk -F': +' '
|
XVERNUM=$(xdpyinfo | gawk -F': +' '
|
||||||
BEGIN { IGNORECASE=1 }
|
BEGIN { IGNORECASE=1 }
|
||||||
|
@ -1002,7 +1022,7 @@ get_graphics_data()
|
||||||
XVER="$XVENDOR $XVERNUM"
|
XVER="$XVENDOR $XVERNUM"
|
||||||
|
|
||||||
IFS=$'\n'
|
IFS=$'\n'
|
||||||
GLX=( $( glxinfo | gawk -F ': ' '
|
A_GFX_DATA=( $( glxinfo | gawk -F ': ' '
|
||||||
function join(arr, sep) {
|
function join(arr, sep) {
|
||||||
s=""
|
s=""
|
||||||
i=flag=0
|
i=flag=0
|
||||||
|
@ -1034,14 +1054,14 @@ get_graphics_data()
|
||||||
}
|
}
|
||||||
' ) )
|
' ) )
|
||||||
IFS="$OIFS"
|
IFS="$OIFS"
|
||||||
GLXR="${GLX[0]}"
|
GLXR="${A_GFX_DATA[0]}"
|
||||||
GLXV="${GLX[1]}"
|
GLXV="${A_GFX_DATA[1]}"
|
||||||
GLXDR="${GLX[2]}"
|
GLXDR="${A_GFX_DATA[2]}"
|
||||||
|
|
||||||
# GLXR=$(glxinfo | gawk -F ': ' 'BEGIN {IGNORECASE=1} /opengl renderer/ && $2 !~ /mesa/ {seen[$2]++} END {for (i in seen) {printf("%s ",i)}}')
|
# GLXR=$(glxinfo | gawk -F ': ' 'BEGIN {IGNORECASE=1} /opengl renderer/ && $2 !~ /mesa/ {seen[$2]++} END {for (i in seen) {printf("%s ",i)}}')
|
||||||
# GLXV=$(glxinfo | gawk -F ': ' 'BEGIN {IGNORECASE=1} /opengl version/ && $2 !~ /mesa/ {seen[$2]++} END {for (i in seen) {printf("%s ",i)}}')
|
# GLXV=$(glxinfo | gawk -F ': ' 'BEGIN {IGNORECASE=1} /opengl version/ && $2 !~ /mesa/ {seen[$2]++} END {for (i in seen) {printf("%s ",i)}}')
|
||||||
|
|
||||||
if [[ -z $GLXR || -z $GLXV ]]
|
if [ -z "$GLXR" -o -z "$GLXV" ]
|
||||||
then
|
then
|
||||||
MESA=1
|
MESA=1
|
||||||
fi
|
fi
|
||||||
|
@ -1052,22 +1072,17 @@ get_graphics_data()
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
#### -------------------------------------------------------------------
|
get_networking_data()
|
||||||
#### print and processing of output data
|
|
||||||
#### -------------------------------------------------------------------
|
|
||||||
|
|
||||||
print_networking_data()
|
|
||||||
{
|
{
|
||||||
local i='' long_network='' card_plural='s' card_one='(1) '
|
IFS=$'\n'
|
||||||
|
A_NETWORK_DATA=( $( echo "$LSPCI" | gawk '
|
||||||
IFS=$'\n' long_network=($( echo "$LSPCI" | gawk '
|
|
||||||
BEGIN { IGNORECASE=1 }
|
BEGIN { IGNORECASE=1 }
|
||||||
/^[0-9a-f:.]+ (ethernet|network) (controller|bridge)/ || /^[0-9a-f:.]+ [^:]+: .*(ethernet|network).*$/ {
|
/^[0-9a-f:.]+ (ethernet|network) (controller|bridge)/ || /^[0-9a-f:.]+ [^:]+: .*(ethernet|network).*$/ {
|
||||||
nic=gensub(/^[0-9a-f:.]+ [^:]+: (.+)$/,"\\1","g",$0)
|
nic=gensub(/^[0-9a-f:.]+ [^:]+: (.+)$/,"\\1","g",$0)
|
||||||
gsub(/realtek semiconductor/, "Realtek", nic)
|
gsub(/realtek semiconductor/, "Realtek", nic)
|
||||||
gsub(/davicom semiconductor/, "Davicom", nic)
|
gsub(/davicom semiconductor/, "Davicom", nic)
|
||||||
gsub(/,/," ", nic)
|
gsub(/,/," ", nic)
|
||||||
gsub(/'"$NORMAL_BANS"'/, "", nic); gsub(/ [ ]+/," ", nic); gsub(/^ +| +$/,"", nic)
|
gsub(/'"$A_NORMAL_BANS"'/, "", nic); gsub(/ [ ]+/," ", nic); gsub(/^ +| +$/,"", nic)
|
||||||
# The doublequotes above are necessary because of the pipes in the variable.
|
# The doublequotes above are necessary because of the pipes in the variable.
|
||||||
eth[nic]++
|
eth[nic]++
|
||||||
while (getline && !/^$/) {
|
while (getline && !/^$/) {
|
||||||
|
@ -1094,46 +1109,21 @@ print_networking_data()
|
||||||
j++
|
j++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
'))
|
') )
|
||||||
IFS="$OIFS"
|
IFS="$OIFS"
|
||||||
|
|
||||||
if [[ -n ${long_network[@]} ]]
|
|
||||||
then
|
|
||||||
if [[ ${#long_network[@]} -le 1 ]]
|
|
||||||
then
|
|
||||||
card_plural=''
|
|
||||||
card_one=''
|
|
||||||
fi
|
|
||||||
i=0
|
|
||||||
print_screen_output "$( printf "${C1}%-${INDENT}s${C2} %s" "Network Card$card_plural" "${C1}$card_one${C2}${long_network[i]}" )"
|
|
||||||
while [[ -n ${long_network[++i]} ]]
|
|
||||||
do
|
|
||||||
print_screen_output "$( printf "${C1}%-${INDENT}s${C2} %s" " " "${C1}($(($i+1)))${C2} ${long_network[i]}" )"
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
print_it_out()
|
#### -------------------------------------------------------------------
|
||||||
{
|
#### print and processing of output data
|
||||||
local hostName=$( hostname ) i=''
|
#### -------------------------------------------------------------------
|
||||||
local long_gfx='' long_cpu='' long_last='' long_intro='' short_full=''
|
|
||||||
local root_home_data="$( df -h -T | egrep '(/|/boot|/var|/home)$' | C1=${C1} C2=${C2} awk '{print ENVIRON["C1"]"Partition:"ENVIRON["C2"], $7, ENVIRON["C1"]"- ", ENVIRON["C1"]"size:"ENVIRON["C2"], $3, ENVIRON["C1"]"used:"ENVIRON["C2"], $4, "(", $6, ")"}' )"
|
|
||||||
root_home_data=$( echo $root_home_data )
|
|
||||||
|
|
||||||
if [ "$VERBOSITY_LEVEL" -gt 0 ]
|
print_cpu_data()
|
||||||
then
|
{
|
||||||
if [ "$SHOW_HOST" -gt 0 ]
|
local cpu_data='' i='' a_cpu_working=''
|
||||||
then
|
|
||||||
long_intro=$( printf "${C1}%-${INDENT}s${C2} \"%s\"${C1} %s " "Host/Kernel/OS" "$hostName" "running" )
|
|
||||||
else
|
|
||||||
long_intro=$( printf "${C1}%-${INDENT}s${C2} " "OS/Kernel" )
|
|
||||||
fi
|
|
||||||
long_intro="$long_intro$( echo -ne "${C2}$OSKERN ${CN}[ ${C1}$DISTRO ${CN}]" )"
|
|
||||||
print_screen_output "$long_intro"
|
|
||||||
|
|
||||||
##print_screen_output "CPU[0]=\"${CPU[0]}\""
|
##print_screen_output "CPU[0]=\"${CPU[0]}\""
|
||||||
IFS=","
|
IFS=","
|
||||||
CPUTMP=(${CPU[0]})
|
a_cpu_working=(${A_CPU_DATA[0]})
|
||||||
IFS="$OIFS"
|
IFS="$OIFS"
|
||||||
# Strange (and also some expected) behavior encountered.
|
# Strange (and also some expected) behavior encountered.
|
||||||
# If print_screen_output() uses $1 as the parameter to output to the screen,
|
# If print_screen_output() uses $1 as the parameter to output to the screen,
|
||||||
|
@ -1143,115 +1133,142 @@ print_it_out()
|
||||||
# However, that text2 is consecutively truncated is somewhat strange, so take note.
|
# However, that text2 is consecutively truncated is somewhat strange, so take note.
|
||||||
# This has been confirmed by #bash on freenode.
|
# This has been confirmed by #bash on freenode.
|
||||||
# The above mentioned only emerges when using the debugging markers below
|
# The above mentioned only emerges when using the debugging markers below
|
||||||
##print_screen_output "CPUTMP=\"***${CPUTMP[@]} $hostName+++++++\"----------"
|
##print_screen_output "a_cpu_working=\"***${a_cpu_working[@]} $hostName+++++++\"----------"
|
||||||
|
|
||||||
if [[ -z ${CPUTMP[2]} ]]
|
if [[ -z ${a_cpu_working[2]} ]]
|
||||||
then
|
then
|
||||||
CPUTMP[2]="unknown"
|
a_cpu_working[2]="unknown"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ${#CPU[@]} -gt 2 ]]
|
if [[ ${#A_CPU_DATA[@]} -gt 2 ]]
|
||||||
then
|
then
|
||||||
CPUNUM="${C1}(1)${C2} "
|
CPUNUM="${C1}(1)${C2} "
|
||||||
else
|
else
|
||||||
# Array CPU always has one element: max clockfreq found. Therefore -gt and not -ge
|
# Array CPU always has one element: max clockfreq found. Therefore -gt and not -ge
|
||||||
unset CPUNUM
|
unset CPUNUM
|
||||||
fi
|
fi
|
||||||
long_cpu=$( printf "${C1}%-${INDENT}s${C2} %s" "CPU Info" "${CPUNUM}${CPUTMP[0]}" )
|
cpu_data=$( printf "${C1}%-${INDENT}s${C2} %s" "CPU Info" "${CPUNUM}${a_cpu_working[0]}" )
|
||||||
if [ "$VERBOSITY_LEVEL" -ge 3 ]
|
if [ "$VERBOSITY_LEVEL" -ge 3 ]
|
||||||
then
|
then
|
||||||
long_cpu=$( printf "%s${C2} %s %s ${C1}%s${CN}%s${C2} %s ${CN}%s" "$long_cpu" "${CPUTMP[2]}" "cache" "flags" "(" "$CPUFLAGS" ")" )
|
cpu_data=$( printf "%s${C2} %s %s ${C1}%s${CN}%s${C2} %s ${CN}%s" "$cpu_data" "${a_cpu_working[2]}" "cache" "flags" "(" "$CPUFLAGS" ")" )
|
||||||
fi
|
fi
|
||||||
long_cpu=$( printf "%s ${C1}%s${C2} ${CN}%s${C2} %s ${CN}%s" "$long_cpu" "clocked at" "[" "${CPUTMP[1]} MHz" "]" )
|
cpu_data=$( printf "%s ${C1}%s${C2} ${CN}%s${C2} %s ${CN}%s" "$cpu_data" "clocked at" "[" "${a_cpu_working[1]} MHz" "]" )
|
||||||
print_screen_output "$long_cpu"
|
print_screen_output "$cpu_data"
|
||||||
|
|
||||||
for (( i=1; i < ${#CPU[@]}-1; i++ ))
|
for (( i=1; i < ${#A_CPU_DATA[@]}-1; i++ ))
|
||||||
do
|
do
|
||||||
IFS=","
|
IFS=","
|
||||||
CPUTMP=(${CPU[i]})
|
a_cpu_working=(${A_CPU_DATA[i]})
|
||||||
IFS="$OIFS"
|
IFS="$OIFS"
|
||||||
long_cpu=$( printf "${C1}%-${INDENT}s${C2} %s" " " "${C1}($((i+1)))${C2} ${CPUTMP[0]}" )
|
cpu_data=$( printf "${C1}%-${INDENT}s${C2} %s" " " "${C1}($((i+1)))${C2} ${a_cpu_working[0]}" )
|
||||||
if [[ $VERBOSITY_LEVEL -ge 3 ]]
|
if [ "$VERBOSITY_LEVEL" -ge 3 ]
|
||||||
then
|
then
|
||||||
long_cpu=$( printf "%s${C2} %s %s ${C1}%s${CN}%s${C2} %s ${CN}%s" "$long_cpu" "${CPUTMP[2]}" "cache" "flags" "(" "$CPUFLAGS" ")" )
|
cpu_data=$( printf "%s${C2} %s %s ${C1}%s${CN}%s${C2} %s ${CN}%s" "$cpu_data" "${a_cpu_working[2]}" "cache" "flags" "(" "$CPUFLAGS" ")" )
|
||||||
fi
|
fi
|
||||||
long_cpu=$( printf "%s ${C1}%s${C2} ${CN}%s${C2} %s ${CN}%s" "$long_cpu" "clocked at" "[" "${CPUTMP[1]} MHz" "]" )
|
cpu_data=$( printf "%s ${C1}%s${C2} ${CN}%s${C2} %s ${CN}%s" "$cpu_data" "clocked at" "[" "${a_cpu_working[1]} MHz" "]" )
|
||||||
print_screen_output "$long_cpu"
|
print_screen_output "$cpu_data"
|
||||||
if [ "$i" -gt 10 ]
|
if [ "$i" -gt 10 ]
|
||||||
then
|
then
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
}
|
||||||
|
|
||||||
if [[ ${#GFX[@]} -gt 1 ]]
|
print_gfx_data()
|
||||||
|
{
|
||||||
|
local gfx_data='' i=''
|
||||||
|
|
||||||
|
if [[ ${#A_GFX_DATA[@]} -gt 1 ]]
|
||||||
then
|
then
|
||||||
i=1
|
i=1
|
||||||
while [[ -n ${GFX[i]} && $i -le 3 ]]
|
while [[ -n ${GFX[i]} && $i -le 3 ]]
|
||||||
do
|
do
|
||||||
long_gfx=$( echo -ne " ${C1}Card $(($i+1))${C2} ${GFX[i]} " )
|
gfx_data=$( echo -ne " ${C1}Card $(($i+1))${C2} ${GFX[i]} " )
|
||||||
(( i++ ))
|
(( i++ ))
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
long_gfx=$( printf "${C1}%-${INDENT}s${C2} %s" "Graphics Info" "${C1}Card 1${C2} ${GFX[0]}${long_gfx}" )
|
gfx_data=$( printf "${C1}%-${INDENT}s${C2} %s" "Graphics Info" "${C1}Card 1${C2} ${A_GFX_DATA[0]}${gfx_data}" )
|
||||||
if ((X))
|
if [ "$X" -gt 0 ]
|
||||||
then
|
then
|
||||||
long_gfx="${long_gfx}$( echo -ne "${C1} $XVER ${CN}[${C2} ${RES} ${CN}]" )"
|
gfx_data="${gfx_data}$( echo -ne "${C1} $XVER ${CN}[${C2} ${RES} ${CN}]" )"
|
||||||
else
|
else
|
||||||
long_gfx="${long_gfx}$( echo -ne "${C1} tty resolution ${CN}(${C2} ${RES} ${CN})" )"
|
gfx_data="${gfx_data}$( echo -ne "${C1} tty resolution ${CN}(${C2} ${RES} ${CN})" )"
|
||||||
fi
|
fi
|
||||||
print_screen_output "$long_gfx"
|
print_screen_output "$gfx_data"
|
||||||
|
|
||||||
if ((X)) && ! ((MESA))
|
if [ "$X" -gt 0 -a "$MESA" -eq 0 ]
|
||||||
then
|
then
|
||||||
#long_gfx="$( echo -ne "${INDENT}${C1}GLX Renderer${C2} ${GLXR}${CN} | ${C1}GLX Version${C2} ${GLXV}${CN}" )"
|
#long_gfx="$( echo -ne "${INDENT}${C1}GLX Renderer${C2} ${GLXR}${CN} | ${C1}GLX Version${C2} ${GLXV}${CN}" )"
|
||||||
long_gfx=$( printf "${C1}%-${INDENT}s${C2} %s" " " "${C1}GLX Renderer${C2} ${GLXR}${CN} | ${C1}GLX Version${C2} ${GLXV}${CN}" )
|
gfx_data=$( printf "${C1}%-${INDENT}s${C2} %s" " " "${C1}GLX Renderer${C2} ${GLXR}${CN} | ${C1}GLX Version${C2} ${GLXV}${CN}" )
|
||||||
if ((CRAP))
|
if ((CRAP))
|
||||||
then
|
then
|
||||||
long_gfx="${long_gfx}$( echo -ne "${C1}Direct rendering${C2} ${GLXDR}${CN}" )"
|
gfx_data="${gfx_data}$( echo -ne "${C1}Direct rendering${C2} ${GLXDR}${CN}" )"
|
||||||
fi
|
fi
|
||||||
print_screen_output "$long_gfx"
|
print_screen_output "$gfx_data"
|
||||||
fi
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
print_hard_disk_data()
|
||||||
|
{
|
||||||
|
local hdd_data=''
|
||||||
|
local root_home_data="$( df -h -T | egrep '(/|/boot|/var|/home)$' | C1=${C1} C2=${C2} awk '{print ENVIRON["C1"]"Partition:"ENVIRON["C2"], $7, ENVIRON["C1"]"- ", ENVIRON["C1"]"size:"ENVIRON["C2"], $3, ENVIRON["C1"]"used:"ENVIRON["C2"], $4, "(", $6, ")"}' )"
|
||||||
|
root_home_data=$( echo $root_home_data )
|
||||||
|
|
||||||
if [ "$VERBOSITY_LEVEL" -ge 2 ]
|
if [ "$VERBOSITY_LEVEL" -ge 2 ]
|
||||||
then
|
then
|
||||||
print_networking_data
|
hdd_data="$( printf "${C1}%-${INDENT}s${C2} %s" "System Info" "${C1}HDD${C2} ${HDDMOD} ${C1}Size${C2} ${HDD} (${HDDUSG})${CN}" )"
|
||||||
fi
|
|
||||||
|
|
||||||
# Some code could look superfluous but BitchX doesn't like lines not ending in a newline. F*&k that bitch!
|
|
||||||
# long_last=$( echo -ne "${C1}Processes${C2} ${PROC}${CN} | ${C1}Uptime${C2} ${UPT}${CN} | ${C1}Memory${C2} ${MEM}${CN}" )
|
|
||||||
if [ "$VERBOSITY_LEVEL" -ge 2 ]
|
|
||||||
then
|
|
||||||
long_last="$( printf "${C1}%-${INDENT}s${C2} %s" "System Info" "${C1}HDD${C2} ${HDDMOD} ${C1}Size${C2} ${HDD} (${HDDUSG})${CN}" )"
|
|
||||||
else
|
else
|
||||||
long_last="$( printf "${C1}%-${INDENT}s${C2} %s" "System Info" "${C1}HDD Size${C2} ${HDD} (${HDDUSG})${CN}" )"
|
hdd_data="$( printf "${C1}%-${INDENT}s${C2} %s" "System Info" "${C1}HDD Size${C2} ${HDD} (${HDDUSG})${CN}" )"
|
||||||
fi
|
|
||||||
print_screen_output "$long_last"
|
|
||||||
if [ "$VERBOSITY_LEVEL" -gt 3 ]
|
|
||||||
then
|
|
||||||
long_last=$( printf "${C1}%-${INDENT}s${C2} %s" " " "${root_home_data}" )
|
|
||||||
print_screen_output "$long_last"
|
|
||||||
:
|
|
||||||
fi
|
fi
|
||||||
|
print_screen_output "$hdd_data"
|
||||||
|
|
||||||
long_last=$( printf "${C1}%-${INDENT}s${C2} %s" " " "${C1}Processes${C2} ${PROC}${CN} | ${C1}Uptime${C2} ${UPT}${CN} | ${C1}Memory${C2} ${MEM}${CN}" )
|
if [ "$VERBOSITY_LEVEL" -ge 4 ]
|
||||||
if [[ $RUNLVL ]]
|
|
||||||
then
|
then
|
||||||
long_last="${long_last}$( echo -ne " | ${C1}Runlevel${C2} ${RUNLVL}${CN}" )"
|
hdd_data=$( printf "${C1}%-${INDENT}s${C2} %s" " " "${root_home_data}" )
|
||||||
|
print_screen_output "$hdd_data"
|
||||||
fi
|
fi
|
||||||
if ((SHOW_IRC))
|
}
|
||||||
then
|
|
||||||
long_last="${long_last}$( echo -ne " | ${C1}Client${C2} ${IRC_CLIENT}${IRC_CLIENT_VERSION}${CN}" )"
|
|
||||||
fi
|
|
||||||
long_last="${long_last}$( echo -ne " | ${C1}${MY_VERSION}" )"
|
|
||||||
|
|
||||||
if ((SCHEME))
|
print_intro_data()
|
||||||
|
{
|
||||||
|
local intro_data='' host_name=$( hostname )
|
||||||
|
|
||||||
|
if [ "$SHOW_HOST" -gt 0 ]
|
||||||
then
|
then
|
||||||
long_last="${long_last}$( echo -ne "${NORMAL}" )"
|
intro_data=$( printf "${C1}%-${INDENT}s${C2} \"%s\"${C1} %s " "Host/Kernel/OS" "$host_name" "running" )
|
||||||
fi
|
|
||||||
print_screen_output "$long_last"
|
|
||||||
else
|
else
|
||||||
|
intro_data=$( printf "${C1}%-${INDENT}s${C2} " "OS/Kernel" )
|
||||||
|
fi
|
||||||
|
intro_data="$intro_data$( echo -ne "${C2}$CURRENT_KERNEL ${CN}[ ${C1}$DISTRO ${CN}]" )"
|
||||||
|
print_screen_output "$intro_data"
|
||||||
|
}
|
||||||
|
|
||||||
|
print_networking_data()
|
||||||
|
{
|
||||||
|
local i='' card_plural='s' card_one='(1) '
|
||||||
|
|
||||||
|
if [[ -n ${A_NETWORK_DATA[@]} ]]
|
||||||
|
then
|
||||||
|
if [[ ${#A_NETWORK_DATA[@]} -le 1 ]]
|
||||||
|
then
|
||||||
|
card_plural=''
|
||||||
|
card_one=''
|
||||||
|
fi
|
||||||
|
i=0
|
||||||
|
print_screen_output "$( printf "${C1}%-${INDENT}s${C2} %s" "Network Card$card_plural" "${C1}$card_one${C2}${A_NETWORK_DATA[i]}" )"
|
||||||
|
while [[ -n ${A_NETWORK_DATA[++i]} ]]
|
||||||
|
do
|
||||||
|
print_screen_output "$( printf "${C1}%-${INDENT}s${C2} %s" " " "${C1}($(($i+1)))${C2} ${A_NETWORK_DATA[i]}" )"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
print_short_data()
|
||||||
|
{
|
||||||
|
local short_data='' i=''
|
||||||
|
|
||||||
#set_color_scheme 12
|
#set_color_scheme 12
|
||||||
if ! ((IBSHELL))
|
if [ "$IBSHELL" -eq 0 ]
|
||||||
then
|
then
|
||||||
for i in $C1 $C2 $CN
|
for i in $C1 $C2 $CN
|
||||||
do
|
do
|
||||||
|
@ -1260,7 +1277,7 @@ print_it_out()
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
if ((BGBLACK))
|
if [ "$BGBLACK" -gt 0 ]
|
||||||
then
|
then
|
||||||
for i in C1 C2 CN
|
for i in C1 C2 CN
|
||||||
do
|
do
|
||||||
|
@ -1274,18 +1291,65 @@ print_it_out()
|
||||||
#C1="${C1},1"; C2="${C2},1"; CN="${CN},1"
|
#C1="${C1},1"; C2="${C2},1"; CN="${CN},1"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
short_full=$( echo -ne "${C1}CPU${CN}[${C2}${CPUMODEL} clocked at ${CPUCLOCK}${CN}] ${C1}Kernel${CN}[${C2}${OSKERN}${CN}] ${C1}Up${CN}[${C2}${FL2}${FL1}${UPT}${FL1}${CN}] ${C1}Mem${CN}[${C2}${FL2}${FL1}${MEM}${FL1}${CN}] ${C1}HDD${CN}[${C2}${FL2}${FL1}${HDD}($HDDUSG)${FL1}${CN}] ${C1}Procs${CN}[${C2}${FL2}${FL1}${PROC}${FL1}${CN}]" )
|
short_data=$( echo -ne "${C1}CPU${CN}[${C2}${CPUMODEL} clocked at ${CPUCLOCK}${CN}] ${C1}Kernel${CN}[${C2}${CURRENT_KERNEL}${CN}] ${C1}Up${CN}[${C2}${FL2}${FL1}${UPT}${FL1}${CN}] ${C1}Mem${CN}[${C2}${FL2}${FL1}${MEM}${FL1}${CN}] ${C1}HDD${CN}[${C2}${FL2}${FL1}${HDD}($HDDUSG)${FL1}${CN}] ${C1}Procs${CN}[${C2}${FL2}${FL1}${PROC}${FL1}${CN}]" )
|
||||||
|
|
||||||
if ((SHOW_IRC))
|
if [ "$SHOW_IRC" -gt 0 ]
|
||||||
then
|
then
|
||||||
short_full="${short_full}$( echo -ne " ${C1}Client${CN}[${C2}${IRC_CLIENT}${IRC_CLIENT_VERSION}${CN}]" )"
|
short_data="${short_data}$( echo -ne " ${C1}Client${CN}[${C2}${IRC_CLIENT}${IRC_CLIENT_VERSION}${CN}]" )"
|
||||||
fi
|
fi
|
||||||
if ((SCHEME))
|
if [ "$SCHEME" -gt 0 ]
|
||||||
then
|
then
|
||||||
short_full="${short_full}$( echo -ne "$NORMAL" )"
|
short_data="${short_data}$( echo -ne "$NORMAL" )"
|
||||||
fi
|
fi
|
||||||
print_screen_output "$short_full"
|
print_screen_output "$short_data"
|
||||||
|
}
|
||||||
|
|
||||||
|
print_system_data()
|
||||||
|
{
|
||||||
|
local system_data=''
|
||||||
|
|
||||||
|
# Some code could look superfluous but BitchX doesn't like lines not ending in a newline. F*&k that bitch!
|
||||||
|
# long_last=$( echo -ne "${C1}Processes${C2} ${PROC}${CN} | ${C1}Uptime${C2} ${UPT}${CN} | ${C1}Memory${C2} ${MEM}${CN}" )
|
||||||
|
system_data=$( printf "${C1}%-${INDENT}s${C2} %s" " " "${C1}Processes${C2} ${PROC}${CN} | ${C1}Uptime${C2} ${UPT}${CN} | ${C1}Memory${C2} ${MEM}${CN}" )
|
||||||
|
|
||||||
|
if [ "$RUNLVL" -gt 0 ]
|
||||||
|
then
|
||||||
|
system_data="${system_data}$( echo -ne " | ${C1}Runlevel${C2} ${RUNLVL}${CN}" )"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$SHOW_IRC" -gt 0 ]
|
||||||
|
then
|
||||||
|
system_data="${system_data}$( echo -ne " | ${C1}Client${C2} ${IRC_CLIENT}${IRC_CLIENT_VERSION}${CN}" )"
|
||||||
|
fi
|
||||||
|
system_data="${system_data}$( echo -ne " | ${C1}${MY_VERSION}" )"
|
||||||
|
|
||||||
|
if [ "$SCHEME" -gt 0 ]
|
||||||
|
then
|
||||||
|
system_data="${system_data}$( echo -ne "${NORMAL}" )"
|
||||||
|
fi
|
||||||
|
print_screen_output "$system_data"
|
||||||
|
}
|
||||||
|
|
||||||
|
print_it_out()
|
||||||
|
{
|
||||||
|
case "$VERBOSITY_LEVEL" in
|
||||||
|
0)
|
||||||
|
print_short_data
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
print_intro_data
|
||||||
|
print_cpu_data
|
||||||
|
print_gfx_data
|
||||||
|
|
||||||
|
if [ "$VERBOSITY_LEVEL" -ge 2 ]
|
||||||
|
then
|
||||||
|
print_networking_data
|
||||||
|
fi
|
||||||
|
|
||||||
|
print_hard_disk_data
|
||||||
|
print_system_data
|
||||||
|
;;
|
||||||
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
########################################################################
|
########################################################################
|
||||||
|
@ -1326,7 +1390,7 @@ fi
|
||||||
get_parameters "$@"
|
get_parameters "$@"
|
||||||
|
|
||||||
# If no colorscheme was set in the parameter handling routine, then set the default scheme
|
# If no colorscheme was set in the parameter handling routine, then set the default scheme
|
||||||
if ! ((CSCHEME))
|
if [ "$CSCHEME" -eq 0 ]
|
||||||
then
|
then
|
||||||
set_color_scheme "$DEFAULT_SCHEME"
|
set_color_scheme "$DEFAULT_SCHEME"
|
||||||
fi
|
fi
|
||||||
|
@ -1339,6 +1403,7 @@ get_distro_data
|
||||||
get_cpu_data
|
get_cpu_data
|
||||||
get_hard_drive_data
|
get_hard_drive_data
|
||||||
get_memory_data
|
get_memory_data
|
||||||
|
get_networking_data
|
||||||
get_processes_uptime
|
get_processes_uptime
|
||||||
get_graphics_data
|
get_graphics_data
|
||||||
|
|
||||||
|
@ -1346,11 +1411,9 @@ get_graphics_data
|
||||||
print_it_out
|
print_it_out
|
||||||
|
|
||||||
## last steps
|
## last steps
|
||||||
if ((IBSHELL && SCHEME))
|
if [ "$IBSHELL" -gt 0 -a "$SCHEME" -gt 0 ]
|
||||||
then
|
then
|
||||||
echo -n "[0m"
|
echo -n "[0m"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
exit 0 # weechat's executor plugin forced me to do this, and rightfully so, because else the exit code from the last command is taken..
|
exit 0 # weechat's executor plugin forced me to do this, and rightfully so, because else the exit code from the last command is taken..
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue