2008-10-28 00:40:43 +00:00
#!/bin/bash
########################################################################
#### Script Name: inxi
2008-11-08 21:13:13 +00:00
#### version: 0.4.11
2008-11-08 18:33:40 +00:00
#### Date: November 8 2008
2008-10-28 00:40:43 +00:00
########################################################################
#### inxi is a fork of infobash, the original bash sys info script by locsmif
2008-11-05 06:16:33 +00:00
#### As time permits functionality improvements and recoding will occur.
2008-11-07 17:38:30 +00:00
####
2008-10-28 00:40:43 +00:00
#### inxi, the universal, portable, system info script for irc.
#### Tested with Irssi, Xchat, Konversation, BitchX, KSirc, ircII,
#### Gaim/Pidgin, Weechat, KVIrc and Kopete.
2008-10-29 03:03:18 +00:00
#### Original infobash author and copyright holder:
#### Copyright (C) 2005-2007 Michiel de Boer a.k.a. locsmif <infobash@rebelhomicide.demon.nl>
2008-10-30 22:04:26 +00:00
#### inxi version: Copyright (C) 2008 Warren Scott Rogers & Harald Hope
####
#### Current script home page: http://techpatterns.com/forums/about1131.html
#### Script svn: http://code.google.com/p/inxi
2008-11-07 17:38:30 +00:00
####
2008-10-28 00:40:43 +00:00
#### This program is free software; you can redistribute it and/or modify
#### it under the terms of the GNU General Public License as published by
#### the Free Software Foundation; either version 3 of the License, or
#### (at your option) any later version.
2008-11-07 17:38:30 +00:00
####
2008-10-28 00:40:43 +00:00
#### This program is distributed in the hope that it will be useful,
#### but WITHOUT ANY WARRANTY; without even the implied warranty of
#### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#### GNU General Public License for more details.
2008-11-07 17:38:30 +00:00
####
2008-10-28 00:40:43 +00:00
#### You should have received a copy of the GNU General Public License
#### along with this program. If not, see <http://www.gnu.org/licenses/>.
#### DEPENDENCIES
2008-11-07 17:38:30 +00:00
#### bash >=2.05b(bash), df;readlink;stty;tr;uname;wc(coreutils),
2008-10-28 00:40:43 +00:00
#### gawk(gawk), grep(grep), hostname(hostname), lspci(pciutils),
#### ps;uptime(procps), runlevel(sysvinit), glxinfo;xdpyinfo;xrandr(xbase-clients)
#### Also the proc filesystem should be present and mounted
########################################################################
#### VARIABLES
########################################################################
2008-11-01 22:24:04 +00:00
## NOTE: we can use hwinfo if it's available in all systems, or most, to get
## a lot more data and verbosity levels going
2008-10-30 22:34:23 +00:00
### Variable initializations: null values
2008-10-31 20:20:44 +00:00
CMDL_MAX=''
2008-10-30 05:04:11 +00:00
COLOR_SCHEME=''
2008-11-01 21:24:45 +00:00
COLOR_SCHEME_SET=''
2008-10-28 23:39:01 +00:00
IRC_CLIENT=''
IRC_CLIENT_VERSION=''
2008-10-30 22:34:23 +00:00
### primary data array holders
2008-11-04 20:02:05 +00:00
A_AUDIO_DATA=''
2008-10-31 20:20:44 +00:00
A_CMDL=''
2008-11-04 22:08:46 +00:00
A_CPU_CORE_DATA=''
2008-10-29 21:23:29 +00:00
A_CPU_DATA=''
2008-10-30 20:32:53 +00:00
A_GFX_CARD_DATA=''
2008-10-30 07:23:45 +00:00
A_GLX_DATA=''
2008-10-31 20:20:44 +00:00
A_HDD_DATA=''
2008-10-29 21:23:29 +00:00
A_NETWORK_DATA=''
2008-11-04 03:03:29 +00:00
A_PARTITION_DATA=''
2008-10-30 20:32:53 +00:00
A_X_DATA=''
2008-10-30 22:34:23 +00:00
### Boolean true/false globals
2008-11-01 21:24:45 +00:00
# check to make sure initial steps run without error for debugging
2008-11-04 05:39:26 +00:00
# inxi hasn't been 'booted' yet.
2008-11-01 21:24:45 +00:00
B_ALL_UP='false'
2008-11-05 22:23:53 +00:00
# triggers full display of cpu flags
B_CPU_FLAGS_FULL='false'
2008-11-04 20:02:05 +00:00
# Debug flood override: make 'true' to allow long debug output
B_DEBUG_FLOOD='false'
2008-11-03 21:30:34 +00:00
# show extra output data
B_EXTRA_DATA='false'
2008-11-01 21:24:45 +00:00
# override certain errors due to currupted data
B_HANDLE_CORRUPT_DATA='false'
2008-10-30 22:34:23 +00:00
# Running in a shell? Defaults to false, and is determined later.
2008-11-07 17:38:30 +00:00
B_RUNNING_IN_SHELL='false'
2008-10-30 22:34:23 +00:00
# Set this to 'false' to avoid printing the hostname
2008-10-31 20:20:44 +00:00
B_SHOW_HOST='true'
2008-11-07 20:45:25 +00:00
# Show sound card data
B_SHOW_SOUND='false'
2008-11-01 21:24:45 +00:00
# triggers various debugging and new option testing
B_TESTING_FLAG='false'
2008-11-06 19:43:28 +00:00
# Test for X running
2008-10-30 20:32:53 +00:00
B_X_RUNNING='false'
2008-11-06 19:43:28 +00:00
if [[ -n $DISPLAY ]];then
2008-11-07 17:38:30 +00:00
B_X_RUNNING='true'
2008-11-06 19:43:28 +00:00
fi
2008-10-29 21:23:29 +00:00
2008-10-30 22:34:23 +00:00
### Variable initializations: constants
2008-10-29 02:35:42 +00:00
DCOPOBJ="default"
2008-10-30 22:34:23 +00:00
DEBUG=0 # Set debug levels from 1-10
2008-10-31 20:20:44 +00:00
# Debug Buffer Index, index into a debug buffer storing debug messages until inxi is 'all up'
DEBUG_BUFFER_INDEX=0
### Reroute all error messages to the bitbucket (if not debugging)
2008-11-06 19:43:28 +00:00
if [[ $DEBUG -eq 0 ]]
2008-10-31 20:20:44 +00:00
then
exec 2>/dev/null
2008-11-07 17:38:30 +00:00
fi
2008-10-31 20:20:44 +00:00
#((DEBUG)) && exec 2>&1 # This is for debugging konversation
2008-11-07 17:38:30 +00:00
# Defaults to 2, make this 1 for normal, 0 for no colorcodes at all. Set to any other valid scheme you like.
2008-10-30 22:34:23 +00:00
# Same as runtime parameter.
DEFAULT_SCHEME=2
# Default indentation level
2008-11-07 17:38:30 +00:00
INDENT=10
2008-10-30 22:34:23 +00:00
# default to false, no konversation found, 1 is /cmd inxi start, 2 is native konvi script mode
2008-11-07 17:38:30 +00:00
KONVI=0
2008-10-30 21:23:29 +00:00
# NO_CPU_COUNT=0 # Wether or not the string "dual" or similar is found in cpuinfo output. If so, avoid dups.
2008-10-30 22:34:23 +00:00
# This is a variable that controls how many parameters inxi will parse in a /proc/<pid>/cmdline file before stopping.
2008-11-07 17:38:30 +00:00
PARAMETER_LIMIT=30
2008-10-29 21:47:13 +00:00
SCHEME=0 # set default scheme
2008-10-30 22:34:23 +00:00
# SHOW_IRC=1 to avoid showing the irc client version number, or SHOW_IRC=0 to disable client information completely.
2008-11-07 17:38:30 +00:00
SHOW_IRC=2
2008-11-01 23:29:22 +00:00
# Verbosity level defaults to 0, this can also be set with -v0, -v2, -v3, etc as a parameter.
2008-11-07 17:38:30 +00:00
VERBOSITY_LEVEL=0
2008-11-01 23:29:22 +00:00
# Supported number of verbosity levels, including 0
2008-11-07 20:45:25 +00:00
VERBOSITY_LEVELS=5
2008-10-30 22:34:23 +00:00
2008-11-03 22:37:57 +00:00
# Clear nullglob, because it creates unpredictable situations with IFS=$'\n' ARR=($VAR) IFS="$ORIGINAL_IFS"
2008-10-28 00:40:43 +00:00
# type constructs. Stuff like [rev a1] is now seen as a glob expansion pattern, and fails, and
# therefore results in nothing. Tricky as fuck.
shopt -u nullglob
2008-11-03 22:37:57 +00:00
## info on bash built in: $IFS - http://tldp.org/LDP/abs/html/internalvariables.html
# Backup the current Internal Field Separator
2008-11-07 17:38:30 +00:00
ORIGINAL_IFS="$IFS"
2008-10-30 22:34:23 +00:00
# These two determine separators in single line output, to force irc clients not to break off sections
2008-11-07 17:38:30 +00:00
FL1='-'
2008-10-28 23:39:01 +00:00
FL2=''
2008-10-28 00:40:43 +00:00
2008-10-30 22:34:23 +00:00
### Script names/paths
2008-10-28 01:27:14 +00:00
SCRIPT_NAME="inxi"
SCRIPT_PATH=$( dirname $0 )
2008-11-07 19:59:11 +00:00
SCRIPT_VERSION_NUMBER=$( grep -im 1 'version:' $SCRIPT_PATH/$SCRIPT_NAME | gawk '{print $3}' )
2008-10-29 21:23:29 +00:00
KONVI_CFG="konversation/scripts/$SCRIPT_NAME.conf" # relative path to $(kde-config --path data)
2008-10-28 23:39:01 +00:00
2008-10-30 22:34:23 +00:00
### Script Localization
# Make sure every program speaks English.
2008-11-07 17:38:30 +00:00
LC_ALL="C"
export LC_ALL
2008-10-28 23:39:01 +00:00
2008-10-30 22:34:23 +00:00
### Output Colors
# A more elegant way to have a scheme that doesn't print color codes (neither ANSI nor mIRC) at all. See below.
2008-11-07 17:38:30 +00:00
unset EMPTY
2008-10-28 00:40:43 +00:00
# DGREY BLACK RED DRED GREEN DGREEN YELLOW DYELLOW
2008-10-28 23:39:01 +00:00
ANSI_COLORS=" [1;30m [0;30m [1;31m [0;31m [1;32m [0;32m [1;33m [0;33m"
IRC_COLORS=" \x0314 \x0301 \x0304 \x0305 \x0309 \x0303 \x0308 \x0307"
2008-10-28 00:40:43 +00:00
# BLUE DBLUE MAGENTA DMAGENTA CYAN DCYAN WHITE GREY NORMAL
2008-10-28 23:39:01 +00:00
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"
#ANSI_COLORS=($ANSI_COLORS); IRC_COLORS=($IRC_COLORS)
2008-10-29 21:23:29 +00:00
A_COLORS_AVAILABLE=( DGREY BLACK RED DRED GREEN DGREEN YELLOW DYELLOW BLUE DBLUE MAGENTA DMAGENTA CYAN DCYAN WHITE GREY NORMAL )
2008-10-28 00:40:43 +00:00
# See above for notes on EMPTY
2008-10-29 21:23:29 +00:00
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 )
2008-10-31 20:20:44 +00:00
## Actual color variables
C1=''
C2=''
CN=''
2008-10-28 23:39:01 +00:00
2008-10-30 22:34:23 +00:00
### Distro Data
2008-11-07 17:38:30 +00:00
# In cases of derived distros where the version file of the base distro can also be found under /etc,
2008-10-28 23:39:01 +00:00
# the derived distro's version file should go first. (Such as with Sabayon / Gentoo)
2008-11-03 20:41:39 +00:00
DISTROS_DERIVED="antix-version kanotix-version knoppix-version redhat-release sabayon-release sidux-version turbolinux-release zenwalk-version"
2008-10-28 03:01:58 +00:00
# debian_version excluded from DISTROS_PRIMARY so Debian can fall through to /etc/issue detection. Same goes for Ubuntu.
2008-11-03 20:41:39 +00:00
DISTROS_EXCLUDE_LIST="debian_version ubuntu_version"
DISTROS_PRIMARY="gentoo-release mandrake-release redhat-release slackware-version SuSE-release"
2008-10-28 23:39:01 +00:00
2008-10-30 22:34:23 +00:00
### Bans Data
2008-10-31 20:20:44 +00:00
# Precede a banword with $'\2' to prevent it from being subject to automated escaping by the make_ban_lists routine
2008-10-28 00:40:43 +00:00
# $'\1' gets weird results :
# 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.|
2008-10-30 07:43:21 +00:00
A_NORMAL_BANS=( corporation communications gmbh technologies technology group $'\2'"\<ltd\>" ltd. $'\2'"\<inc\>" inc. $'\2'\<co\> co. "(tm)" "(r)" $'\2'"\(rev ..\)" )
2008-11-05 23:18:26 +00:00
A_CPU_BANS=( @ cpu deca 'dual core' 'tri core' 'quad core' ennea genuine hepta hexa multi octa penta 'processor' processor single triple $'\2'"[0-9.]+ *[MmGg][Hh][Zz]" )
2008-11-06 21:33:14 +00:00
# after processing, the ban arrays will be put into these:
2008-11-06 19:59:58 +00:00
BAN_LIST_NORMAL=''
BAN_LIST_CPU=''
2008-10-29 03:03:18 +00:00
2008-10-30 22:34:23 +00:00
### Source global config overrides
2008-11-06 19:43:28 +00:00
if [[ -s /etc/$SCRIPT_NAME.conf ]];then
2008-11-07 17:38:30 +00:00
source /etc/$SCRIPT_NAME.conf
2008-10-28 01:27:14 +00:00
fi
# Source user config overrides
2008-11-06 19:43:28 +00:00
if [[ -s $HOME/.$SCRIPT_NAME ]];then
2008-10-28 23:39:01 +00:00
source $HOME/.$SCRIPT_NAME
2008-10-28 01:27:14 +00:00
fi
2008-10-28 03:42:28 +00:00
2008-11-07 17:38:30 +00:00
# WARNING: In the main part below (search for 'KONVI')
2008-10-28 00:40:43 +00:00
# there's a check for Konversation-specific config files.
2008-11-07 17:38:30 +00:00
# Any one of these can override the above if inxi is run
2008-10-28 00:40:43 +00:00
# from Konversation!
########################################################################
#### UTILITY FUNCTIONS
########################################################################
2008-10-28 06:45:56 +00:00
#### -------------------------------------------------------------------
#### error handler and debugger
#### -------------------------------------------------------------------
2008-10-28 00:40:43 +00:00
# Error handling
2008-11-01 21:24:45 +00:00
# args: $1 - error number; $2 - optional, extra information
2008-11-07 17:38:30 +00:00
error_handler()
2008-10-28 00:40:43 +00:00
{
2008-10-30 21:28:50 +00:00
local error_message=''
2008-11-07 17:38:30 +00:00
2008-10-30 22:34:23 +00:00
# assemble the error message
2008-10-28 00:40:43 +00:00
case $1 in
2008-11-06 21:39:18 +00:00
2) error_message="large flood danger, debug buffer full!"
2008-10-28 00:40:43 +00:00
;;
2008-11-07 17:38:30 +00:00
3) error_message="unsupported color scheme number: $2"
2008-10-28 00:40:43 +00:00
;;
2008-11-07 17:38:30 +00:00
4) error_message="unsupported verbosity level: $2"
2008-10-28 00:40:43 +00:00
;;
2008-11-07 17:38:30 +00:00
5) error_message="dependency not met: $2 not found in path"
2008-10-28 00:40:43 +00:00
;;
2008-11-07 17:38:30 +00:00
6) error_message="/proc not found! Quitting..."
2008-10-28 00:40:43 +00:00
;;
2008-11-07 20:45:25 +00:00
7) error_message="unsupported script parameter: $2\nFor supported options, check the help menu: $SCRIPT_NAME -h"
2008-10-28 02:48:05 +00:00
;;
2008-11-07 20:48:13 +00:00
8) error_message="the self-updater failed, wget exited with error: $2.\nYou probably need to be root.\nHint, to make for easy updates without being root, do: chown <user name> $SCRIPT_PATH/$SCRIPT_NAME"
2008-10-30 21:23:29 +00:00
;;
2008-11-07 17:38:30 +00:00
*) error_message="error unknown: $@"
set -- 99
2008-10-28 00:40:43 +00:00
;;
esac
2008-10-30 22:34:23 +00:00
# then print it and exit
2008-11-06 21:39:18 +00:00
print_screen_output "$SCRIPT_NAME: $error_message"
2008-10-28 00:40:43 +00:00
exit $1
}
2008-11-07 17:38:30 +00:00
script_debugger()
2008-10-28 00:40:43 +00:00
{
2008-10-31 20:20:44 +00:00
local a_debug_buffer=''
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ $B_ALL_UP == 'true' ]];then
if [[ $DEBUG -eq 0 ]];then
2008-10-28 00:40:43 +00:00
return
fi
2008-11-06 19:43:28 +00:00
if [[ $DEBUG_BUFFER_INDEX -gt 0 ]];then
2008-10-31 20:20:44 +00:00
for (( DEBUG_BUFFER_INDEX=0; DEBUG_BUFFER_INDEX < ${#a_debug_buffer[@]}; DEBUG_BUFFER_INDEX++ ))
2008-10-28 00:40:43 +00:00
do
2008-10-31 20:20:44 +00:00
print_screen_output "${a_debug_buffer[DEBUG_BUFFER_INDEX]}"
2008-10-28 00:40:43 +00:00
done
2008-10-31 20:20:44 +00:00
DEBUG_BUFFER_INDEX=0
2008-10-28 00:40:43 +00:00
fi
2008-10-28 02:14:34 +00:00
print_screen_output "$@"
2008-10-28 00:40:43 +00:00
else
2008-11-06 19:43:28 +00:00
if [[ $B_DEBUG_FLOOD == 'true' && $DEBUG_BUFFER_INDEX -gt 10 ]];then
2008-10-28 02:24:11 +00:00
error_handler 2
2008-10-28 00:40:43 +00:00
fi
2008-10-31 20:20:44 +00:00
a_debug_buffer[DEBUG_BUFFER_INDEX++]="$@"
2008-10-28 00:40:43 +00:00
fi
}
2008-10-28 06:45:56 +00:00
#### -------------------------------------------------------------------
#### print / output cleaners
#### -------------------------------------------------------------------
2008-10-29 01:59:05 +00:00
# inxi speaks through here. When run by Konversation, uses DCOP
# note, this is a huge bug trap, for now we're not using this at all except to
# output basic stuff. At some point in the future we'll debug the dcop stuff,
2008-10-30 20:32:53 +00:00
# but that only works if inxi is being run as a konversation script to begin with
2008-11-07 17:38:30 +00:00
print_screen_output()
2008-10-28 06:45:56 +00:00
{
2008-11-06 19:43:28 +00:00
if [[ $DEBUG -gt 5 ]];then
if [[ $KONVI -eq 1 ]];then
2008-10-29 02:35:42 +00:00
dcop "$DCPORT" "$DCOPOBJ" print_screen_output "$DCSERVER" "$DCTARGET" "konvi='$KONVI' saying : '$@'"
else
echo "konvi='$KONVI' saying : '$@'"
fi
#echo "konvi='$KONVI' saying : '$@'"
2008-10-29 01:59:05 +00:00
#((KONVI)) && dcop "$DCPORT" "$DCOPOBJ" print_screen_output "$DCSERVER" "$DCTARGET" "konvi='$KONVI' saying : '$@'" || echo "konvi='$KONVI' saying : '$@'"
2008-10-28 06:45:56 +00:00
fi
#((KONVI)) && dcop $DCPORT Konversation print_screen_output $DCSERVER "$DCTARGET" "$1" || echo -ne "$1\n"
2008-10-29 01:59:05 +00:00
2008-11-06 19:43:28 +00:00
if [[ $KONVI -eq 1 ]];then
2008-10-29 02:35:42 +00:00
dcop "$DCPORT" "$DCOPOBJ" print_screen_output "$DCSERVER" "$DCTARGET" "$1"
else
echo -ne "$1\n"
fi
2008-10-29 01:59:05 +00:00
#((KONVI)) && dcop "$DCPORT" "$DCOPOBJ" print_screen_output "$DCSERVER" "$DCTARGET" "$1" || echo -ne "$1\n"
2008-10-29 02:35:42 +00:00
# echo -ne "$1\n"
2008-10-28 06:45:56 +00:00
}
2008-10-30 20:32:53 +00:00
## this handles all verbose line construction with indentation/line starter
## args: $1 - null (, actually: " ") or line starter; $2 - line content
2008-10-29 23:02:24 +00:00
create_print_line()
{
printf "${C1}%-${INDENT}s${C2} %s" "$1" "$2"
}
2008-11-07 17:38:30 +00:00
# this removes newline and pipes.
2008-10-31 20:20:44 +00:00
# args: $1 - string to clean
2008-10-28 06:35:45 +00:00
remove_erroneous_chars()
2008-10-28 00:40:43 +00:00
{
2008-10-28 07:28:50 +00:00
## RS is input record separator
## gsub is substitute;
2008-11-06 21:03:19 +00:00
gawk '
2008-11-07 17:38:30 +00:00
BEGIN { RS="" } {
2008-11-06 20:58:35 +00:00
gsub(/\n$/,"") ## (newline; end of string) with (nothing)
gsub(/\n/," "); ## (newline) with (space)
gsub(/^ *| *$/, "") ## (pipe char) with (nothing)
gsub(/ +/, " ") ## ( +) with (space)
gsub(/ [ ]+/, " ") ## ([ ]+) with (space)
gsub(/^ +| +$/, "") ## (pipe char) with (nothing)
2008-11-07 17:38:30 +00:00
printf $0
2008-11-06 20:58:35 +00:00
}' "$1" ## prints (returns) cleaned input
2008-10-28 00:40:43 +00:00
}
2008-11-07 19:59:11 +00:00
## note: this is now running inside each gawk sequence directly to avoid exiting gawk
## looping in bash through arrays, then re-entering gawk to clean up, then writing back to array
2008-11-06 20:58:35 +00:00
## in bash. For now I'll leave this here because there's still some interesting stuff to get re methods
2008-10-28 06:45:56 +00:00
# Enforce boilerplate and buzzword filters
2008-11-06 19:59:58 +00:00
# args: $1 - BAN_LIST_NORMAL/BAN_LIST_CPU; $2 - string to sanitize
2008-11-07 17:38:30 +00:00
sanitize_characters()
2008-10-28 06:45:56 +00:00
{
2008-11-07 17:38:30 +00:00
# Cannot use strong quotes to unquote a string with pipes in it!
2008-10-28 23:39:01 +00:00
# bash will interpret the |'s as usual and try to run a subshell!
2008-10-28 06:45:56 +00:00
# Using weak quotes instead, or use '"..."'
2008-11-06 20:58:35 +00:00
echo "$2" | gawk "
BEGIN { IGNORECASE=1 } {
gsub(/${!1}/,\"\")
gsub(/ [ ]+/,\" \") ## ([ ]+) with (space)
gsub(/^ +| +$/,\"\") ## (pipe char) with (nothing)
print ## prints (returns) cleaned input
}"
2008-10-28 06:45:56 +00:00
}
#### -------------------------------------------------------------------
#### basic tests
#### -------------------------------------------------------------------
2008-11-07 17:38:30 +00:00
# Determine if any of the absolutely necessary tools are absent
check_script_depends()
2008-10-28 00:40:43 +00:00
{
2008-11-04 20:02:05 +00:00
local app_name='' app_data=''
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ ! -d /proc/ ]];then
2008-10-28 02:24:11 +00:00
error_handler 6
2008-10-28 00:40:43 +00:00
fi
2008-11-06 19:43:28 +00:00
if [[ $B_X_RUNNING == 'true' ]];then
2008-10-29 03:49:24 +00:00
for app_name in xrandr xdpyinfo glxinfo
2008-10-28 00:40:43 +00:00
do
2008-11-04 20:02:05 +00:00
app_data=$( type -p $app_name )
2008-11-06 19:43:28 +00:00
if [[ -z $app_data ]];then
2008-11-04 20:02:05 +00:00
script_debugger "inxi: Resuming in non X mode: $app_name not found in path"
B_X_RUNNING='false'
break
fi
2008-10-28 00:40:43 +00:00
done
fi
2008-11-07 17:38:30 +00:00
2008-10-29 03:49:24 +00:00
app_name=''
2008-10-28 00:40:43 +00:00
# bc removed from deps for now
2008-10-29 03:49:24 +00:00
for app_name in df free gawk grep hostname lspci ps readlink runlevel tr uname uptime wc
2008-10-28 00:40:43 +00:00
do
2008-11-04 20:02:05 +00:00
app_data=$( type -p $app_name )
2008-11-06 19:43:28 +00:00
if [[ -z $app_data ]];then
2008-11-04 20:02:05 +00:00
error_handler 5 "$app_name"
fi
2008-10-28 00:40:43 +00:00
done
}
# Filter boilerplate & buzzwords.
2008-10-31 20:20:44 +00:00
# args: $1 - quoted: "$@" array of ban terms
2008-11-07 17:38:30 +00:00
make_ban_lists()
2008-10-28 00:40:43 +00:00
{
2008-10-31 20:20:44 +00:00
local ban_list=''
2008-11-07 17:38:30 +00:00
# Iterate over $@
2008-10-31 20:20:44 +00:00
## note: this is a weird, non-intuitive method, needs some documentation or rewriting
## if you declare ban_string it stops working, have to read up on this
for ban_string
2008-10-28 00:40:43 +00:00
do
2008-10-31 20:20:44 +00:00
# echo "term=\"$ban_string\"" # >&2
if [[ ${ban_string:0:1} = $'\2' ]];then
ban_list="${ban_list}${ban_list+|}${ban_string:1:${#ban_string}-1}"
2008-10-28 00:40:43 +00:00
else
2008-11-07 17:38:30 +00:00
# Automatically escapes [ ] ( ) . and +
ban_list="${ban_list}${ban_list+|}$( echo "$ban_string" | gawk '{
2008-11-06 20:58:35 +00:00
gsub(/([\[\]+().])/,"\\\\&")
2008-11-07 17:38:30 +00:00
print
2008-11-06 20:58:35 +00:00
}' )"
2008-10-28 00:40:43 +00:00
fi
done
2008-11-07 17:38:30 +00:00
2008-10-31 20:20:44 +00:00
echo "$ban_list"
2008-10-28 00:40:43 +00:00
}
2008-10-31 20:20:44 +00:00
# make_ban_lists "${A_CPU_BANS[@]}";exit
2008-11-06 19:59:58 +00:00
2008-11-07 17:38:30 +00:00
# Set the colorscheme
2008-10-31 20:20:44 +00:00
# args: $1 = <scheme number>|<"none">
2008-11-07 17:38:30 +00:00
set_color_scheme()
2008-10-28 00:40:43 +00:00
{
2008-10-29 03:03:18 +00:00
local i='' script_colors='' color_codes=''
2008-11-07 17:38:30 +00:00
2008-10-30 17:18:02 +00:00
if [[ $1 -ge ${#A_COLOR_SCHEMES[@]} ]];then
2008-11-07 17:38:30 +00:00
set -- 1
2008-10-28 00:40:43 +00:00
fi
SCHEME="$1" # Set a global variable to allow checking for chosen scheme later
2008-11-06 19:43:28 +00:00
if [[ $B_RUNNING_IN_SHELL == 'true' ]];then
2008-11-04 20:02:05 +00:00
color_codes=( $ANSI_COLORS )
2008-10-28 00:40:43 +00:00
else
2008-11-04 20:02:05 +00:00
color_codes=( $IRC_COLORS )
2008-10-28 00:40:43 +00:00
fi
2008-10-29 21:23:29 +00:00
for (( i=0; i < ${#A_COLORS_AVAILABLE[@]}; i++ ))
2008-10-28 00:40:43 +00:00
do
2008-10-29 21:23:29 +00:00
eval "${A_COLORS_AVAILABLE[i]}=\"${color_codes[i]}\""
2008-10-28 00:40:43 +00:00
done
2008-10-28 23:39:01 +00:00
IFS=","
2008-11-04 20:02:05 +00:00
script_colors=( ${A_COLOR_SCHEMES[$1]} )
2008-11-03 22:37:57 +00:00
IFS="$ORIGINAL_IFS"
2008-10-29 03:03:18 +00:00
C1="${!script_colors[0]}"
C2="${!script_colors[1]}"
CN="${!script_colors[2]}"
2008-10-30 05:04:11 +00:00
# ((COLOR_SCHEME++)) ## note: why is this? ##
2008-10-28 00:40:43 +00:00
}
# Parse the null separated commandline under /proc/<pid passed in $1>/cmdline
2008-10-31 20:20:44 +00:00
# args: $1 - $PPID
2008-11-07 17:38:30 +00:00
get_cmdline()
2008-10-28 00:40:43 +00:00
{
2008-10-31 20:20:44 +00:00
local i=0 ppid=$1
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ ! -e /proc/$ppid/cmdline ]];then
2008-11-05 23:54:14 +00:00
echo 0
return
2008-10-28 00:40:43 +00:00
fi
2008-10-28 02:14:34 +00:00
##print_screen_output "Marker"
2008-10-31 20:20:44 +00:00
##print_screen_output "\$ppid='$ppid' -=- $(< /proc/$ppid/cmdline)"
unset A_CMDL
## note: need to figure this one out, and ideally clean it up and make it readable
2008-10-29 21:23:29 +00:00
while read -d $'\0' L && [ "$i" -lt 32 ]
2008-11-07 17:38:30 +00:00
do
2008-10-31 20:20:44 +00:00
A_CMDL[i++]="$L" ## note: make sure this is valid - What does L mean? ##
done </proc/$ppid/cmdline
2008-10-29 21:23:29 +00:00
##print_screen_output "\$i='$i'"
2008-11-06 19:43:28 +00:00
if [[ $i -eq 0 ]];then
2008-10-31 20:20:44 +00:00
A_CMDL[0]=$(< /proc/$ppid/cmdline)
if [[ -n ${A_CMDL[0]} ]];then
2008-10-28 23:39:01 +00:00
i=1
fi
2008-10-28 00:40:43 +00:00
fi
2008-10-31 20:20:44 +00:00
CMDL_MAX=$i
2008-10-28 23:39:01 +00:00
}
2008-11-01 21:24:45 +00:00
# Get the parameters. Note: standard options should be lower case, advanced or testing, upper
2008-10-31 20:20:44 +00:00
# args: $1 - full script startup args: $@
2008-11-07 17:38:30 +00:00
get_parameters()
2008-10-28 23:39:01 +00:00
{
2008-11-01 21:24:45 +00:00
local opt=''
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ -z $1 ]];then
2008-10-28 23:39:01 +00:00
return 1
fi
2008-11-07 17:38:30 +00:00
2008-11-07 20:55:37 +00:00
while getopts c:CdDfFhsTUv:Vx opt
2008-10-28 23:39:01 +00:00
do
2008-11-01 21:24:45 +00:00
case $opt in
2008-11-06 19:43:28 +00:00
c) if [[ -n $( egrep '^[0-9][0-9]?$' <<< $OPTARG ) ]];then
2008-11-01 21:24:45 +00:00
COLOR_SCHEME_SET='true'
## note: not sure about this, you'd think user values should be overridden, but
## we'll leave this for now
2008-11-06 19:43:28 +00:00
if [[ -z $COLOR_SCHEME ]];then
2008-11-01 21:34:07 +00:00
set_color_scheme "$OPTARG"
2008-11-01 21:24:45 +00:00
fi
else
2008-11-01 21:30:53 +00:00
error_handler 3 "$OPTARG"
2008-11-01 21:24:45 +00:00
fi
;;
2008-11-01 22:05:22 +00:00
C) B_HANDLE_CORRUPT_DATA='true'
2008-11-01 21:24:45 +00:00
;;
2008-11-01 22:05:22 +00:00
d) VERBOSITY_LEVEL=1
2008-10-28 23:39:01 +00:00
;;
2008-11-01 22:05:22 +00:00
D) DEBUG=1
2008-10-28 23:39:01 +00:00
exec 2>&1
;;
2008-11-05 22:23:53 +00:00
f) B_CPU_FLAGS_FULL='true'
;;
2008-11-07 20:55:37 +00:00
F) VERBOSITY_LEVEL=$VERBOSITY_LEVELS
B_CPU_FLAGS_FULL='true'
B_SHOW_SOUND='true'
B_EXTRA_DATA='true'
;;
2008-11-07 20:45:25 +00:00
s) B_SHOW_SOUND='true'
;;
2008-11-01 22:05:22 +00:00
T) B_TESTING_FLAG='true'
2008-11-01 21:24:45 +00:00
;;
2008-11-04 20:02:05 +00:00
v) if [[ -n $( egrep "^[0-9][0-9]?$" <<< $OPTARG ) && $OPTARG -le $VERBOSITY_LEVELS ]];then
2008-11-01 21:34:07 +00:00
VERBOSITY_LEVEL="$OPTARG"
2008-10-28 23:39:01 +00:00
else
2008-11-01 21:30:53 +00:00
error_handler 4 "$OPTARG"
2008-10-28 23:39:01 +00:00
fi
;;
2008-11-01 22:05:22 +00:00
U) script_self_updater
2008-10-28 23:39:01 +00:00
;;
2008-11-01 22:05:22 +00:00
V) print_version_info
2008-10-28 23:39:01 +00:00
exit 0
;;
2008-11-03 21:30:34 +00:00
x) B_EXTRA_DATA='true'
;;
2008-11-01 22:05:22 +00:00
h) show_options
2008-10-29 03:22:16 +00:00
exit 0
;;
2008-11-07 20:45:25 +00:00
*) error_handler 7 "$opt"
2008-10-28 23:39:01 +00:00
;;
esac
done
2008-10-28 00:40:43 +00:00
}
2008-11-01 21:24:45 +00:00
## print out help menu, not including Testing or Debugger stuff because it's not needed
2008-10-29 03:22:16 +00:00
show_options()
{
2008-11-01 21:24:45 +00:00
local color_scheme_count=${#A_COLOR_SCHEMES[@]}
2008-11-07 17:38:30 +00:00
2008-11-01 21:24:45 +00:00
print_screen_output "$SCRIPT_NAME supports the following options. You can combine"
print_screen_output "them, or list them one by one: Examples: $SCRIPT_NAME -v4 -c6 OR $SCRIPT_NAME -dc 6"
2008-11-08 18:33:40 +00:00
print_screen_output "Note: all extra output options (like -d, -f, -x) require a verbosity level of 1 or higher."
print_screen_output "In other words, they do not run if you do not use either -d or -v1 (or higher)"
2008-10-31 04:31:56 +00:00
print_screen_output "- - - - - - - - - - - - - - - - - - - - - - - - - - - - -"
2008-11-01 21:24:45 +00:00
print_screen_output "-C Overrides defective or corrupted data."
print_screen_output "-c Available color schemes. Scheme number is required."
print_screen_output " Supported schemes: 0-$color_scheme_count Example: $SCRIPT_NAME -c 11"
print_screen_output "-d Default output verbosity level, same as: $SCRIPT_NAME -v 1"
2008-11-05 22:23:53 +00:00
print_screen_output "-f Show all cpu flags used, not just the short list."
2008-11-07 20:55:37 +00:00
print_screen_output "-F Show Full, all possible, output for $SCRIPT_NAME."
2008-11-01 21:24:45 +00:00
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."
2008-11-01 21:45:17 +00:00
print_screen_output "-v Script verbosity levels. Verbosity level number is required."
2008-11-01 21:24:45 +00:00
print_screen_output " Supported levels: 0-${VERBOSITY_LEVELS} Example: $SCRIPT_NAME -v 4"
2008-11-01 21:50:52 +00:00
print_screen_output " 0 - short output, same as using nothing: $SCRIPT_NAME"
print_screen_output " 1 - basic verbose, same as: $SCRIPT_NAME -d"
2008-11-01 21:55:12 +00:00
print_screen_output " 2 - Also show networking card data"
print_screen_output " 3 - Also show hard disk names as detected."
print_screen_output " 4 - Also show partition size/filled data for (if present):/, /home, /var/, /boot"
print_screen_output " 5 - For multicore systems, also show per core clock speeds."
2008-11-01 21:24:45 +00:00
print_screen_output "-V $SCRIPT_NAME version information. Prints information then exits."
2008-11-08 18:33:40 +00:00
print_screen_output "-x Show extra data: bogomips on cpu; full hard disk info (using -v3 or greater)."
2008-11-03 21:30:34 +00:00
rint_screen_output ""
2008-10-29 03:22:16 +00:00
}
2008-10-30 21:23:29 +00:00
## print out version information for -V/--version
2008-10-29 21:23:29 +00:00
print_version_info()
{
2008-11-07 19:59:11 +00:00
local last_modified=$( grep -im 1 'date:' $SCRIPT_PATH/$SCRIPT_NAME | gawk '{print $3,$4,$5}' )
2008-11-07 17:38:30 +00:00
2008-10-31 04:27:00 +00:00
print_screen_output "$SCRIPT_NAME - the universal, portable, system info script for irc."
2008-10-31 04:24:09 +00:00
print_screen_output "Version: $SCRIPT_VERSION_NUMBER"
print_screen_output "Script Last Modified: $last_modified"
2008-11-04 02:16:50 +00:00
print_screen_output "Script Location: $SCRIPT_PATH"
2008-10-31 04:24:09 +00:00
print_screen_output ""
2008-10-29 21:23:29 +00:00
print_screen_output "Tested with Irssi, Xchat, Konversation, BitchX, KSirc, ircII,"
print_screen_output "Gaim/Pidgin, Weechat, KVIrc and Kopete."
2008-10-31 03:07:52 +00:00
print_screen_output ""
2008-10-31 04:24:09 +00:00
print_screen_output "This script is a fork of Infobash, which is:"
2008-10-31 04:31:56 +00:00
print_screen_output "Copyright (C) 2005-2007 Michiel de Boer a.k.a. locsmif <infobash@rebelhomicide.demon.nl>"
2008-10-31 04:24:09 +00:00
print_screen_output "Subsequent changes and modifications (after Infobash 3.02) are:"
print_screen_output "Copyright (C) 2008 Scott Rogers, Harald Hope, aka trash80 & h2"
print_screen_output ""
2008-10-29 21:23:29 +00:00
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."
}
2008-11-01 21:24:45 +00:00
script_self_updater()
{
2008-11-04 20:09:09 +00:00
print_screen_output "Starting $SCRIPT_NAME self updater."
print_screen_output "Currently running $SCRIPT_NAME version number: $SCRIPT_VERSION_NUMBER"
print_screen_output "Updating $SCRIPT_NAME in $SCRIPT_PATH now..."
2008-11-01 21:24:45 +00:00
wget -O $SCRIPT_PATH/$SCRIPT_NAME http://techpatterns.com/downloads/distro/$SCRIPT_NAME || error_handler 8 "$?"
2008-11-06 19:43:28 +00:00
if [[ $? -eq 0 ]];then
2008-11-07 19:59:11 +00:00
SCRIPT_VERSION_NUMBER=$( grep -im 1 'version:' $SCRIPT_PATH/$SCRIPT_NAME | gawk '{print $3}' )
2008-11-01 21:24:45 +00:00
print_screen_output "Successfully updated to version: $SCRIPT_VERSION_NUMBER\nTo run the new version, just start $SCRIPT_NAME again."
exit 0
fi
}
2008-10-28 23:39:01 +00:00
########################################################################
#### MAIN FUNCTIONS
########################################################################
#### -------------------------------------------------------------------
#### initial startup stuff
2008-11-07 17:38:30 +00:00
#### -------------------------------------------------------------------
2008-10-28 23:39:01 +00:00
2008-10-30 21:23:29 +00:00
# Determine where inxi was run from, set IRC_CLIENT and IRC_CLIENT_VERSION
2008-11-07 17:38:30 +00:00
get_start_client()
2008-10-28 00:40:43 +00:00
{
2008-10-29 21:23:29 +00:00
local irc_client_path='' irc_client_path_lower='' non_native_konvi='' i=''
2008-11-07 17:38:30 +00:00
2008-10-30 17:18:02 +00:00
if tty >/dev/null;then
2008-10-28 23:39:01 +00:00
IRC_CLIENT="Shell"
unset IRC_CLIENT_VERSION
2008-10-30 20:32:53 +00:00
B_RUNNING_IN_SHELL='true'
2008-11-06 19:43:28 +00:00
elif [[ -n $PPID && -f /proc/$PPID/exe ]];then
2008-10-29 02:35:42 +00:00
irc_client_path=$( readlink /proc/$PPID/exe )
2008-11-08 20:39:27 +00:00
irc_client_path_lower=$( tr '[:upper:]' '[:lower:]' <<< $irc_client_path )
# from sidux infobash, handle bad detection of shell; Horst Tritremmel <hjt at sidux.com>
2008-11-08 21:00:17 +00:00
if [[ ${irc_client_path_lower##*/} =~ dash|bash|sh ]]; then
2008-11-08 20:39:27 +00:00
# We want to know who wrapped it into the shell.
PPPID="$( ps -p $PPID -o ppid --no-headers | sed 's/ //g' )"
if [[ -n $PPPID && -f /proc/$PPPID/exe ]];then
irc_client_path_lower="$( readlink /proc/$PPPID/exe | tr '[:upper:]' '[:lower:]' )"
fi
2008-10-29 00:33:52 +00:00
fi
2008-11-07 17:38:30 +00:00
2008-11-08 21:00:17 +00:00
# this handles the problem with konversation reporting itself as perl, which was missed because
# when konversation starts inxi from inside itself, as a script, the parent is konversation, not perl
if [[ -z $( grep -i 'konversation' <<< $irc_client_path ) && -n $( grep -i 'perl' <<< $irc_client_path ) && -n $( pidof konversation ) ]];then
irc_client_path=$( which konversation )
2008-11-08 21:13:13 +00:00
irc_client_path_lower=$( tr '[:upper:]' '[:lower:]' <<< $irc_client_path )
2008-11-08 21:00:17 +00:00
non_native_konvi='true'
fi
2008-10-29 02:35:42 +00:00
case $irc_client_path_lower in
2008-10-28 00:40:43 +00:00
*irssi-text*|*irssi*)
2008-10-29 02:35:42 +00:00
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 { print $2 }' )"
2008-10-28 23:39:01 +00:00
IRC_CLIENT="Irssi"
2008-10-28 00:40:43 +00:00
;;
*konversation*)
2008-10-29 02:35:42 +00:00
# this is necessary to avoid the dcop errors from starting inxi as a /cmd started script
2008-11-06 19:43:28 +00:00
if [[ $non_native_konvi == 'true' ]];then
2008-10-29 02:35:42 +00:00
KONVI=2
else
KONVI=1
fi
2008-11-05 23:54:14 +00:00
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk '
2008-11-07 17:38:30 +00:00
/Konversation:/ {
2008-11-06 20:58:35 +00:00
for ( i=2; i<=NF; i++ ) {
if (i == NF) {
2008-11-07 17:38:30 +00:00
print $i
}
else {
printf $i" "
}
}
exit
2008-11-06 20:58:35 +00:00
}' )"
2008-10-28 23:39:01 +00:00
T=($IRC_CLIENT_VERSION)
2008-10-30 17:18:02 +00:00
if [[ ${T[0]} == *+* ]];then
2008-11-07 17:38:30 +00:00
# < Sho_> locsmif: The version numbers of SVN versions look like this:
# "<version number of last release>+ #<build number", i.e. "1.0+ #3177" ...
2008-10-28 00:40:43 +00:00
# for releases we remove the + and build number, i.e. "1.0" or soon "1.0.1"
2008-10-28 23:39:01 +00:00
IRC_CLIENT_VERSION=" CVS $IRC_CLIENT_VERSION"
2008-10-28 00:40:43 +00:00
T2="${T[0]/+/}"
else
2008-10-28 23:39:01 +00:00
IRC_CLIENT_VERSION=" ${T[0]}"
2008-10-28 00:40:43 +00:00
T2="${T[0]}"
fi
2008-11-07 17:38:30 +00:00
# Remove any dots except the first, and make sure there are no trailing zeroes,
2008-11-05 23:54:14 +00:00
T2=$( echo "$T2" | gawk '
2008-11-07 17:38:30 +00:00
{
2008-11-06 20:58:35 +00:00
sub(/\./, " ")
gsub(/\./, "")
sub(/ /, ".")
2008-11-07 17:38:30 +00:00
printf("%g\n", $0)
2008-11-06 20:58:35 +00:00
}' )
2008-10-28 00:40:43 +00:00
# Since Konversation 1.0, the DCOP interface has changed a bit: dcop "$DCPORT" Konversation ..etc
# becomes : dcop "$DCPORT" default ... or dcop "$DCPORT" irc ..etc. So we check for versions smaller
# than 1 and change the DCOP parameter/object accordingly.
2008-10-30 17:18:02 +00:00
if [[ ${T2} < 1 ]];then
2008-10-28 03:01:58 +00:00
DCOPOBJ="Konversation"
fi
2008-10-28 23:39:01 +00:00
IRC_CLIENT="Konversation"
2008-11-07 17:38:30 +00:00
;;
2008-10-30 04:24:50 +00:00
*xchat-gnome)
RC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 { print $2 }' )"
IRC_CLIENT="X-Chat-Gnome"
;;
2008-10-28 00:40:43 +00:00
*xchat*)
2008-10-29 02:35:42 +00:00
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 { print $2 }' )"
2008-10-28 23:39:01 +00:00
IRC_CLIENT="X-Chat"
2008-10-28 00:40:43 +00:00
;;
*bitchx*)
2008-10-29 02:35:42 +00:00
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk '
2008-11-07 17:38:30 +00:00
/Version/ {
2008-11-05 23:54:14 +00:00
a=tolower($2)
gsub(/[()]|bitchx-/,"",a)
2008-11-06 20:58:35 +00:00
print a
2008-11-07 17:38:30 +00:00
exit
2008-11-05 23:54:14 +00:00
}
2008-11-07 17:38:30 +00:00
$2 == "version" {
2008-11-05 23:54:14 +00:00
a=tolower($3)
sub(/bitchx-/,"",a)
2008-11-06 20:58:35 +00:00
print a
2008-11-07 17:38:30 +00:00
exit
}' )"
2008-10-28 23:39:01 +00:00
IRC_CLIENT="BitchX"
2008-10-28 00:40:43 +00:00
;;
*ircii*)
2008-10-29 02:35:42 +00:00
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 { print $3 }' )"
2008-10-28 23:39:01 +00:00
IRC_CLIENT="ircII"
2008-11-07 17:38:30 +00:00
;;
2008-10-28 00:40:43 +00:00
*gaim*)
2008-10-29 02:35:42 +00:00
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 { print $2 }' )"
2008-10-28 23:39:01 +00:00
IRC_CLIENT="Gaim"
2008-11-07 17:38:30 +00:00
;;
2008-10-28 00:40:43 +00:00
*pidgin*)
2008-10-29 02:35:42 +00:00
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 { print $2 }' )"
2008-10-28 23:39:01 +00:00
IRC_CLIENT="Pidgin"
2008-10-28 00:40:43 +00:00
;;
*weechat-curses*)
2008-10-29 02:35:42 +00:00
IRC_CLIENT_VERSION=" $( $irc_client_path -v) "
2008-10-28 23:39:01 +00:00
IRC_CLIENT="Weechat"
2008-10-28 00:40:43 +00:00
;;
*kvirc*)
2008-11-07 17:38:30 +00:00
IRC_CLIENT_VERSION=" $( $irc_client_path -v 2>&1 | gawk '{
2008-11-05 23:54:14 +00:00
for ( i=2; i<=NF; i++) {
if (i==NF) {
print $i
}
2008-11-07 17:38:30 +00:00
else {
2008-11-05 23:54:14 +00:00
printf $i" "
}
2008-11-07 17:38:30 +00:00
}exit
2008-11-05 23:54:14 +00:00
}' )"
2008-10-28 23:39:01 +00:00
IRC_CLIENT="KVIrc"
2008-10-28 00:40:43 +00:00
;;
*kopete*)
2008-11-06 20:58:35 +00:00
IRC_CLIENT_VERSION=" $( kopete -v | gawk '
/Kopete:/ {
print $2
2008-11-07 17:38:30 +00:00
exit
2008-11-06 20:58:35 +00:00
}' )"
2008-10-28 23:39:01 +00:00
IRC_CLIENT="Kopete"
2008-10-28 00:40:43 +00:00
;;
*perl*)
2008-10-28 23:39:01 +00:00
unset IRC_CLIENT_VERSION # KSirc is one of the possibilities now. KSirc is a wrapper around dsirc, a perl client
2008-10-28 02:24:11 +00:00
get_cmdline $PPID
2008-10-31 20:20:44 +00:00
for (( i=0; i <= $CMDL_MAX; i++ ))
2008-10-28 02:07:37 +00:00
do
2008-10-31 20:20:44 +00:00
case ${A_CMDL[i]} in
2008-11-07 17:38:30 +00:00
*dsirc*)
2008-10-28 23:39:01 +00:00
IRC_CLIENT="KSirc"
2008-10-28 02:07:37 +00:00
# Dynamic runpath detection is too complex with KSirc, because KSirc is started from
# kdeinit. /proc/<pid of the grandparent of this process>/exe is a link to /usr/bin/kdeinit
# with one parameter which contains parameters separated by spaces(??), first param being KSirc.
# Then, KSirc runs dsirc as the perl irc script and wraps around it. When /exec is executed,
2008-10-30 20:32:53 +00:00
# dsirc is the program that runs inxi, therefore that is the parent process that we see.
# You can imagine how hosed I am if I try to make inxi find out dynamically with which path
2008-10-28 02:07:37 +00:00
# KSirc was run by browsing up the process tree in /proc. That alone is straightjacket material.
# (KSirc sucks anyway ;)
2008-11-06 20:58:35 +00:00
IRC_CLIENT_VERSION=" $( ksirc -v | gawk '
2008-11-07 17:38:30 +00:00
/KSirc:/ {
2008-11-06 20:58:35 +00:00
print $2
2008-11-07 17:38:30 +00:00
exit
2008-11-06 20:58:35 +00:00
}' )"
2008-10-28 02:07:37 +00:00
break
;;
2008-10-28 00:40:43 +00:00
esac
2008-11-07 17:38:30 +00:00
done
2008-11-06 19:43:28 +00:00
if [[ -z $IRC_CLIENT_VERSION ]];then
2008-10-28 23:39:01 +00:00
IRC_CLIENT="Unknown Perl client"
2008-10-28 02:07:37 +00:00
fi
2008-10-28 00:40:43 +00:00
;;
*bash*|*sh*)
2008-10-28 23:39:01 +00:00
unset IRC_CLIENT_VERSION
IRC_CLIENT="Shell wrapper"
2008-10-28 00:40:43 +00:00
;;
*)
2008-10-29 02:35:42 +00:00
IRC_CLIENT="Unknown : ${irc_client_path##*/}"
2008-10-28 23:39:01 +00:00
unset IRC_CLIENT_VERSION
2008-10-28 00:40:43 +00:00
;;
esac
2008-11-06 19:43:28 +00:00
if [[ $SHOW_IRC -lt 2 ]];then
2008-10-28 23:39:01 +00:00
unset IRC_CLIENT_VERSION
2008-10-28 00:40:43 +00:00
fi
else
2008-10-28 23:39:01 +00:00
IRC_CLIENT="PPID=\"$PPID\" - empty?"
unset IRC_CLIENT_VERSION
2008-10-28 00:40:43 +00:00
fi
}
2008-10-30 21:23:29 +00:00
## this is a mishmash and will be mostly moved to other places over time, for now
## it's just a holder for some misc stuff that has to happen
2008-10-28 03:42:28 +00:00
set_calculated_variables()
{
2008-11-01 21:24:45 +00:00
local path='' sys_path='' added_path='' b_path_found=''
2008-10-29 03:03:18 +00:00
# Extra path variable to make execute failures less likely, merged below
2008-11-07 17:38:30 +00:00
local extra_paths="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"
2008-10-29 03:49:24 +00:00
# Fallback paths put into $extra_paths; This might, among others, help on gentoo.
# Now, create a difference of $PATH and $extra_paths and add that to $PATH:
2008-10-28 00:40:43 +00:00
IFS=":"
2008-10-29 03:03:18 +00:00
for path in $extra_paths
2008-11-07 17:38:30 +00:00
do
2008-11-01 21:24:45 +00:00
b_path_found='false'
2008-10-29 03:03:18 +00:00
for sys_path in $PATH
2008-11-07 17:38:30 +00:00
do
2008-11-06 19:43:28 +00:00
if [[ $path == $sys_path ]];then
2008-11-01 21:24:45 +00:00
b_path_found='true'
2008-10-28 03:42:28 +00:00
fi
done
2008-11-06 19:43:28 +00:00
if [[ $b_path_found == 'false' ]];then
2008-10-29 03:03:18 +00:00
added_path="$added_path:$path"
2008-10-28 00:40:43 +00:00
fi
done
2008-11-03 22:37:57 +00:00
IFS="$ORIGINAL_IFS"
2008-10-29 03:03:18 +00:00
PATH="${PATH}${added_path}"
2008-11-07 17:38:30 +00:00
##echo "PATH='$PATH'"
##/bin/sh -c 'echo "PATH in subshell=\"$PATH\""'
2008-10-28 03:42:28 +00:00
# Do this after sourcing of config overrides so user can customize banwords
2008-11-06 19:59:58 +00:00
BAN_LIST_NORMAL=$( make_ban_lists "${A_NORMAL_BANS[@]}" ) # Contrary to my previous belief, "${ARR[@]}" passes a quoted list, not one string
BAN_LIST_CPU=$( make_ban_lists "${A_CPU_BANS[@]}" )
##echo "BAN_LIST_NORMAL='$BAN_LIST_NORMAL'"
2008-10-28 03:42:28 +00:00
}
2008-10-28 00:40:43 +00:00
2008-10-28 23:39:01 +00:00
#### -------------------------------------------------------------------
#### get data types
#### -------------------------------------------------------------------
2008-11-04 20:02:05 +00:00
## create array of sound cards installed on system
get_audio_data()
{
local i=''
2008-11-06 21:18:11 +00:00
2008-11-04 20:02:05 +00:00
IFS=$'\n'
A_AUDIO_DATA=( $( echo "$lspci_data" | gawk -F': ' '
2008-11-07 17:38:30 +00:00
{ IGNORECASE=1 }
/multimedia audio controller|audio device/ {
2008-11-06 20:58:35 +00:00
gsub(/'"$BAN_LIST_NORMAL"'/, "", $NF )
gsub(/,/," ",$NF)
gsub(/^ +| +$/,"",$NF)
gsub(/ [ \t]+/," ",$NF)
2008-11-07 17:38:30 +00:00
print $NF
2008-11-06 20:58:35 +00:00
}' ) )
2008-11-04 20:02:05 +00:00
IFS="$ORIGINAL_IFS"
2008-11-05 22:23:53 +00:00
2008-11-04 20:02:05 +00:00
# handle cases where card detection fails, like in PS3, where lspci gives no output, or headless boxes..
2008-11-06 19:43:28 +00:00
if [[ ${#A_AUDIO_DATA[@]} -eq 0 ]];then
2008-11-04 20:02:05 +00:00
A_AUDIO_DATA[0]='Failed to Detect Sound Card!'
fi
}
2008-10-28 23:39:01 +00:00
2008-11-04 22:08:46 +00:00
## create A_CPU_CORE_DATA, currently with two values: integer core count; core string text
2008-10-30 21:23:29 +00:00
## return value cpu core count string, this helps resolve the multi redundant lines of old style output
2008-10-30 20:32:53 +00:00
get_cpu_core_count()
{
## Because of the upcoming release of cpus with core counts over 6, a count of cores is given after Deca (10)
# count the number of processors given
2008-11-07 17:38:30 +00:00
local cpu_core_count=$(grep -ic "cpu cores" /proc/cpuinfo| cut -d':' -f2)
2008-11-06 19:43:28 +00:00
if [[ $cpu_core_count -eq 0 ]];then
2008-11-07 17:38:30 +00:00
cpu_core_count=$(grep -ic "^processor" /proc/cpuinfo| cut -d':' -f2)
2008-11-04 04:01:02 +00:00
fi
2008-11-04 22:08:46 +00:00
local cpu_alpha_count=''
2008-10-30 20:32:53 +00:00
if [[ $cpu_core_count -lt 2 ]]; then
cpu_core_count=1
fi
2008-11-07 17:38:30 +00:00
2008-10-30 20:32:53 +00:00
# match the numberic value to an alpha value
2008-11-07 17:38:30 +00:00
case $cpu_core_count in
2008-10-30 20:32:53 +00:00
1) cpu_alpha_count='Single';;
2) cpu_alpha_count='Dual';;
3) cpu_alpha_count='Triple';;
4) cpu_alpha_count='Quad';;
5) cpu_alpha_count='Penta';;
6) cpu_alpha_count='Hexa';;
7) cpu_alpha_count='Hepta';;
8) cpu_alpha_count='Octa';;
9) cpu_alpha_count='Ennea';;
10) cpu_alpha_count='Deca';;
*) cpu_alpha_count='Multi';;
esac
2008-11-04 22:08:46 +00:00
# create array, core count integer; core count string
A_CPU_CORE_DATA=( "$cpu_core_count" "$cpu_alpha_count Core" )
2008-10-30 20:32:53 +00:00
}
2008-10-30 21:23:29 +00:00
## working, will be replaced by new trash80 stuff
2008-10-28 04:14:35 +00:00
get_cpu_data()
{
2008-10-29 21:23:29 +00:00
local i='' j='' cpu_array_nu='' a_cpu_working='' multi_cpu=''
2008-10-28 00:40:43 +00:00
IFS=$'\n'
2008-10-29 21:23:29 +00:00
A_CPU_DATA=($(gawk -F': ' '
2008-11-07 17:38:30 +00:00
{ IGNORECASE=1 }
2008-10-28 04:14:35 +00:00
# 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!
/^processor\t+:/ { nr = $NF }
2008-11-07 17:38:30 +00:00
/^model name|^cpu\t+:/ {
2008-11-06 19:59:58 +00:00
gsub(/'"$BAN_LIST_NORMAL"'/, "", $NF )
gsub(/'"$BAN_LIST_CPU"'/, "", $NF )
Got rid of sanitize_data feature, which forces double dips into awk, instead I put hte cleaners for , and whitespace into
each awk statement. This avoids exiting awk, then looping through the array in bash, then sending the array items to the
cleaner function, back into awk, then sending it back, and rebuilding the array.
I tried putting the gawk cleaners into a variable and using the variable, but that didn't work as expected, but I'll see
if i can figure out how to get that working.
2008-11-06 20:32:19 +00:00
gsub(/,/, " ", $NF)
gsub(/^ +| +$/, "", $NF)
gsub(/ [ \t]+/, " ", $NF)
2008-11-04 04:54:49 +00:00
cpu[nr, "model"] = $NF
2008-11-04 04:45:02 +00:00
}
2008-11-07 17:38:30 +00:00
2008-11-05 02:05:26 +00:00
/^cpu MHz|^clock\t+:/ {
2008-11-07 17:38:30 +00:00
if (!min) {
2008-10-28 04:14:35 +00:00
min = $NF
2008-10-28 00:40:43 +00:00
}
2008-11-07 17:38:30 +00:00
else {
if ($NF < min) {
min = $NF
}
}
if ($NF > max) {
max = $NF
2008-11-05 02:05:26 +00:00
}
2008-11-04 04:54:49 +00:00
gsub(/MHZ/,"",$NF) ## clears out for cell cpu
2008-11-05 22:23:53 +00:00
gsub(/.00[0]+$/,".00",$NF) ## clears out excessive zeros
2008-10-28 04:14:35 +00:00
cpu[nr, "speed"] = $NF
}
2008-11-07 17:38:30 +00:00
2008-10-28 04:14:35 +00:00
/^cache size/ { cpu[nr, "cache"] = $NF }
2008-11-07 17:38:30 +00:00
2008-10-28 04:14:35 +00:00
/^flags/ { cpu[nr, "flags"] = $NF }
2008-11-07 17:38:30 +00:00
2008-10-28 04:14:35 +00:00
/^bogomips/ { cpu[nr, "bogomips"] = $NF }
2008-11-07 17:38:30 +00:00
2008-11-05 02:32:53 +00:00
/vendor_id/ {
gsub(/genuine|authentic/,"",$NF)
2008-11-07 20:04:28 +00:00
cpu[nr, "vendor"] = tolower( $NF )
2008-11-05 02:32:53 +00:00
}
2008-11-07 17:38:30 +00:00
2008-10-28 04:14:35 +00:00
END {
#if (!nr) { print ",,,"; exit } # <- should this be necessary or should bash handle that
2008-11-05 23:54:14 +00:00
for ( i = 0; i <= nr; i++ ) {
2008-11-05 02:32:53 +00:00
print cpu[i, "model"] "," cpu[i, "speed"] "," cpu[i, "cache"] "," cpu[i, "flags"] "," cpu[i, "bogomips"] "," cpu[nr, "vendor"]
2008-10-28 04:14:35 +00:00
}
2008-11-07 17:38:30 +00:00
if (!min) {
2008-10-28 04:14:35 +00:00
print "not found"
2008-11-07 17:38:30 +00:00
exit
2008-10-28 04:14:35 +00:00
}
2008-11-07 17:38:30 +00:00
if (min != max) {
printf("Min:%s%s Max:%s%s\n", min, "Mhz", max, "Mhz")
2008-10-28 04:14:35 +00:00
}
2008-11-07 17:38:30 +00:00
else {
printf("%s %s\n", max, "Mhz")
2008-10-28 04:14:35 +00:00
}
2008-11-06 21:39:18 +00:00
}' /proc/cpuinfo))
2008-11-07 17:38:30 +00:00
2008-11-03 22:37:57 +00:00
IFS="$ORIGINAL_IFS"
2008-10-28 04:14:35 +00:00
}
2008-10-28 00:40:43 +00:00
2008-10-30 21:23:29 +00:00
## return distro name/id if found
2008-10-30 05:04:11 +00:00
get_distro_data()
2008-10-28 04:14:35 +00:00
{
2008-10-30 20:32:53 +00:00
local i='' distro='' distro_file='' a_distro_glob=''
2008-11-07 17:38:30 +00:00
2008-10-30 05:04:11 +00:00
shopt -s nullglob
cd /etc
2008-10-30 20:32:53 +00:00
a_distro_glob=(*[-_]{release,version})
2008-10-30 05:04:11 +00:00
cd "$OLDPWD"
shopt -u nullglob
2008-11-05 02:05:26 +00:00
2008-11-06 19:43:28 +00:00
if [[ ${#a_distro_glob[@]} -eq 1 ]];then
2008-10-30 20:32:53 +00:00
distro_file="${a_distro_glob}"
2008-11-06 19:43:28 +00:00
elif [[ ${#a_distro_glob[@]} -gt 1 ]];then
2008-10-30 05:04:11 +00:00
for i in $DISTROS_DERIVED $DISTROS_PRIMARY
2008-10-28 04:14:35 +00:00
do
2008-10-30 05:04:11 +00:00
# Only echo works with ${var[@]}, not print_screen_output() or script_debugger()
# This is a known bug, search for the word "strange" inside comments
2008-10-30 20:32:53 +00:00
# echo "i='$i' a_distro_glob[@]='${a_distro_glob[@]}'"
2008-11-03 20:41:39 +00:00
## note: this method only works with [[ brackets, not [. It's very hard to actually
## use this, it should probably be made more explicit.
2008-10-30 20:32:53 +00:00
if [[ " ${a_distro_glob[@]} " == *" $i "* ]];then
distro_file="${i}"
2008-10-30 05:04:11 +00:00
break
fi
2008-10-28 04:14:35 +00:00
done
2008-10-28 00:40:43 +00:00
fi
2008-11-06 19:43:28 +00:00
if [[ -n $distro_file && -s /etc/$distro_file && " $DISTROS_EXCLUDE_LIST " != *" $distro_file "* ]];then
2008-10-30 20:32:53 +00:00
distro=$( remove_erroneous_chars "/etc/$distro_file" )
2008-10-31 03:07:52 +00:00
# this is necessary because antiX doesn't use version/release in its distro id file name
# so the glob tests fail. I expect those tests will need to be redone at some point to avoid this
2008-11-06 19:43:28 +00:00
elif [[ -e /etc/antiX ]];then
2008-10-31 03:07:52 +00:00
distro="$( egrep -oi 'antix.*\.iso' <<< $( remove_erroneous_chars '/etc/antiX' ) | sed 's/\.iso//' )"
2008-10-30 05:04:11 +00:00
else
# Debian pure should fall through here
2008-10-30 20:32:53 +00:00
distro_file="issue"
2008-11-05 02:32:53 +00:00
distro=$( gawk '
2008-11-07 17:38:30 +00:00
BEGIN { RS="" } {
2008-11-06 20:58:35 +00:00
gsub(/\\[a-z]/, "")
gsub(/,/, " ")
gsub(/^ +| +$/, "")
gsub(/ [ \t]+/, " ")
2008-11-07 17:38:30 +00:00
print
2008-11-06 20:58:35 +00:00
}' "/etc/${distro_file}" )
2008-10-28 00:40:43 +00:00
fi
2008-11-06 19:43:28 +00:00
if [[ ${#distro} -gt 80 && $B_HANDLE_CORRUPT_DATA != 'true' ]];then
2008-11-01 21:24:45 +00:00
distro="${RED}/etc/${distro_file} corrupted, use -C to override${NORMAL}"
2008-10-28 00:40:43 +00:00
fi
2008-11-06 19:43:28 +00:00
## note: would like to actually understand the method even if it's not used
# : ${distro:=Unknown distro o_O}
if [[ -z $distro ]];then
distro='Unknown distro o_O'
fi
2008-11-07 17:38:30 +00:00
2008-10-30 22:04:26 +00:00
# this handles an arch bug where /etc/arch-release is empty and /etc/issue is corrupted
2008-11-06 19:43:28 +00:00
if [[ -n $( grep -i 'arch linux' <<< $distro ) ]];then
2008-10-30 22:04:26 +00:00
distro='Arch Linux'
fi
2008-10-30 20:32:53 +00:00
echo "$distro"
2008-10-28 04:14:35 +00:00
}
2008-10-28 00:40:43 +00:00
2008-10-30 21:23:29 +00:00
## create array of gfx cards installed on system
2008-10-30 20:32:53 +00:00
get_graphics_card_data()
2008-10-28 04:14:35 +00:00
{
2008-10-29 21:23:29 +00:00
local i=''
2008-11-07 17:38:30 +00:00
2008-10-28 04:14:35 +00:00
IFS=$'\n'
Got rid of sanitize_data feature, which forces double dips into awk, instead I put hte cleaners for , and whitespace into
each awk statement. This avoids exiting awk, then looping through the array in bash, then sending the array items to the
cleaner function, back into awk, then sending it back, and rebuilding the array.
I tried putting the gawk cleaners into a variable and using the variable, but that didn't work as expected, but I'll see
if i can figure out how to get that working.
2008-11-06 20:32:19 +00:00
A_GFX_CARD_DATA=( $( echo "$lspci_data" | gawk -F': ' '
2008-11-06 20:58:35 +00:00
{ IGNORECASE=1 }
/vga compatible controller/ {
gsub(/'"$BAN_LIST_NORMAL"'/, "", $NF)
gsub(/,/, " ", $NF)
gsub(/^ +| +$/, "", $NF)
gsub(/ [ \t]+/, " ", $NF)
2008-11-07 17:38:30 +00:00
print $NF
2008-11-06 21:39:18 +00:00
}' ) )
2008-11-03 22:37:57 +00:00
IFS="$ORIGINAL_IFS"
Got rid of sanitize_data feature, which forces double dips into awk, instead I put hte cleaners for , and whitespace into
each awk statement. This avoids exiting awk, then looping through the array in bash, then sending the array items to the
cleaner function, back into awk, then sending it back, and rebuilding the array.
I tried putting the gawk cleaners into a variable and using the variable, but that didn't work as expected, but I'll see
if i can figure out how to get that working.
2008-11-06 20:32:19 +00:00
# for (( i=0; i < ${#A_GFX_CARD_DATA[@]}; i++ ))
# do
# A_GFX_CARD_DATA[i]=$( sanitize_characters BAN_LIST_NORMAL "${A_GFX_CARD_DATA[i]}" )
# done
2008-10-31 02:00:02 +00:00
# handle cases where card detection fails, like in PS3, where lspci gives no output, or headless boxes..
2008-11-06 19:43:28 +00:00
if [[ ${#A_GFX_CARD_DATA[@]} -eq 0 ]];then
2008-10-31 02:00:02 +00:00
A_GFX_CARD_DATA[0]='Failed to Detect Video Card!'
fi
2008-11-07 17:38:30 +00:00
2008-10-28 04:14:35 +00:00
# GFXMEM is UNUSED at the moment, because it shows AGP aperture size, which is not necessarily equal to GFX memory..
2008-10-31 20:20:44 +00:00
# GFXMEM="size=[$(echo "$lspci_data" | 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]"
2008-10-30 20:32:53 +00:00
}
2008-10-30 21:23:29 +00:00
## create array of glx data
2008-10-30 20:32:53 +00:00
get_graphics_glx_data()
{
2008-11-06 19:43:28 +00:00
if [[ $B_X_RUNNING == 'true' ]];then
2008-10-28 04:14:35 +00:00
IFS=$'\n'
2008-10-30 07:23:45 +00:00
A_GLX_DATA=( $( glxinfo | gawk -F ': ' '
2008-10-28 04:14:35 +00:00
function join(arr, sep) {
s=""
i=flag=0
for (i in arr) {
if (flag++) s = s sep
s = s i
2008-11-07 17:38:30 +00:00
}
2008-10-28 04:14:35 +00:00
return s
2008-11-07 17:38:30 +00:00
}
BEGIN { IGNORECASE=1 }
/opengl renderer/ {
2008-10-28 04:14:35 +00:00
if ($2 ~ /mesa/) {
# Allow r300 et al, but not the rest
2008-11-07 17:38:30 +00:00
if ($2 ~ / r[3-9][0-9][0-9] /) {
2008-10-28 04:14:35 +00:00
a[$2]
2008-11-07 17:38:30 +00:00
f++
}
next
2008-10-28 00:40:43 +00:00
}
2008-11-07 17:38:30 +00:00
$2 && a[$2]
}
/opengl version/ && (f || $2 !~ /mesa/) { $2 && b[$2] }
/direct rendering/ { $2 && c[$2] }
END {
2008-10-28 04:14:35 +00:00
printf("%s\n%s\n%s\n", join(a,", "), join(b,", "), join(c,", "))
2008-11-06 21:39:18 +00:00
}' ) )
2008-11-03 22:37:57 +00:00
IFS="$ORIGINAL_IFS"
2008-10-30 21:23:29 +00:00
# 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)}}')
2008-10-30 20:32:53 +00:00
fi
}
2008-10-30 21:23:29 +00:00
## return screen resolution / tty resolution
2008-10-30 20:32:53 +00:00
get_graphics_res_data()
{
local screen_resolution=''
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ $B_X_RUNNING == 'true' ]];then
2008-10-30 20:32:53 +00:00
# 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
screen_resolution=$( xrandr | gawk '
/\*/ { res[++m] = gensub(/^.* ([0-9]+) ?x ?([0-9]+)[_ ].* ([0-9\.]+)\*.*$/,"\\1x\\2@\\3hz","g",$0) }
END {
for (n in res) {
if (res[n] ~ /^[[:digit:]]+x[[:digit:]]+/)
line = line ? line ", " res[n] : res[n]
}
if (line)
print(line)
2008-11-07 17:38:30 +00:00
}' )
2008-11-06 19:43:28 +00:00
if [[ -z $screen_resolution ]];then
2008-10-30 20:32:53 +00:00
screen_resolution=$( xdpyinfo | gawk '/dimensions/ { print $2 }' )
2008-10-28 00:40:43 +00:00
fi
2008-10-28 04:14:35 +00:00
else
2008-10-30 20:32:53 +00:00
screen_resolution=$( stty -F $( readlink /proc/$PPID/fd/0 ) size | gawk '{ print $2"x"$1 }' )
fi
echo "$screen_resolution"
}
## for possible future data, not currently used
get_graphics_agp_data()
{
local agp_module=''
2008-11-07 17:38:30 +00:00
2008-10-30 20:32:53 +00:00
## not used currently
agp_module=$( gawk '/agp/ && !/agpgart/ && $3 > 0 { print(gensub(/(.*)_agp.*/,"\\1","g",$1)) }' /proc/modules )
}
2008-10-30 21:23:29 +00:00
## create array of x vendor/version data
2008-10-30 20:32:53 +00:00
get_graphics_x_data()
{
local x_vendor='' x_version=''
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ $B_X_RUNNING == 'true' ]];then
2008-10-30 20:32:53 +00:00
# X vendor and version detection.
x_vendor=$( xdpyinfo | gawk -F': +' '
2008-11-07 17:38:30 +00:00
BEGIN { IGNORECASE=1 }
/vendor string/ {
2008-11-06 21:33:14 +00:00
gsub(/the|inc|foundation|project|corporation/, "", $2)
Got rid of sanitize_data feature, which forces double dips into awk, instead I put hte cleaners for , and whitespace into
each awk statement. This avoids exiting awk, then looping through the array in bash, then sending the array items to the
cleaner function, back into awk, then sending it back, and rebuilding the array.
I tried putting the gawk cleaners into a variable and using the variable, but that didn't work as expected, but I'll see
if i can figure out how to get that working.
2008-11-06 20:32:19 +00:00
gsub(/,/, " ", $2)
gsub(/^ +| +$/, "", $2)
gsub(/ [ \t]+/, " ", $2)
2008-10-30 20:32:53 +00:00
print $2
2008-11-05 23:54:14 +00:00
}' )
Got rid of sanitize_data feature, which forces double dips into awk, instead I put hte cleaners for , and whitespace into
each awk statement. This avoids exiting awk, then looping through the array in bash, then sending the array items to the
cleaner function, back into awk, then sending it back, and rebuilding the array.
I tried putting the gawk cleaners into a variable and using the variable, but that didn't work as expected, but I'll see
if i can figure out how to get that working.
2008-11-06 20:32:19 +00:00
2008-11-07 17:38:30 +00:00
# new method added since radeon and X.org and the disappearance of <X server name> version : ...etc
2008-10-30 20:32:53 +00:00
# Later on, the normal textual version string returned, e.g. like: X.Org version: 6.8.2
# A failover mechanism is in place. (if $x_version is empty, the release number is parsed instead)
2008-11-07 19:59:11 +00:00
x_version=$( xdpyinfo | gawk '/version:/ { print $NF }' )
2008-11-06 19:43:28 +00:00
if [[ -z $x_version ]];then
2008-10-30 20:32:53 +00:00
x_version=$(xdpyinfo | gawk -F': +' '
2008-11-07 17:38:30 +00:00
BEGIN { IGNORECASE=1 }
/vendor release number/ {
2008-11-06 20:58:35 +00:00
gsub(/0+$/, "", $2)
gsub(/0+/, ".", $2)
print $2
2008-11-06 21:39:18 +00:00
}' )
2008-10-30 20:32:53 +00:00
fi
A_X_DATA[0]="$x_vendor"
A_X_DATA[1]="$x_version"
2008-11-07 17:38:30 +00:00
2008-10-30 20:32:53 +00:00
#X -version 2>&1 | gawk '/^X Window System Version/ { print $5 }'
#This method could be used in the future to detect X when X is not running,
#however currently inxi ignores X checks when X is not found.
2008-10-28 00:40:43 +00:00
fi
2008-10-28 04:14:35 +00:00
}
2008-10-28 00:40:43 +00:00
2008-11-08 04:50:09 +00:00
# this gets just the raw data, total space/percent used and disk/name/per disk capacity
get_hdd_data_basic()
2008-10-30 05:04:11 +00:00
{
2008-11-08 04:50:09 +00:00
local hdd_used=''
hdd_used=$( df | gawk '
p {
if (/^\/dev\/(mapper\/|[hs]d[a-z][0-9]+)/) {
if (NF == 1) {
getline
if (NF == 5) {
c += $2
}
else {
next
2008-10-30 05:04:11 +00:00
}
}
2008-11-08 04:50:09 +00:00
else if (NF == 6) {
c += $3
}
}
}
/^Filesystem/ { p++ }
END {
print c
}' )
2008-11-07 17:38:30 +00:00
2008-11-08 04:50:09 +00:00
# create the initial array strings:
# disk-dev, capacity, name
# final item is the total of the disk
IFS=$'\n'
A_HDD_DATA=( $( gawk -v hddused="$hdd_used" '
/[hs]d[a-x]$/ {
driveSize = $(NF - 1)*1024/1000**3
gsub(/,/, " ", driveSize)
gsub(/^ +| +$/, "", driveSize)
2008-11-08 06:27:48 +00:00
printf( $NF",%.1fGB,\n", driveSize )
2008-11-08 04:50:09 +00:00
}
2008-10-30 05:04:11 +00:00
# See http://lanana.org/docs/device-list/devices-2.6+.txt for major numbers used below
2008-11-07 19:59:11 +00:00
$1 ~ /^(3|22|33|8)$/ && $2 % 16 == 0 {size+=$3}
END {
2008-11-08 04:50:09 +00:00
size = size*1024/1000**3 # calculate size in GB size
workingUsed = hddused*1024/1000**3 # calculate workingUsed in GB used
if ( size > 0 && workingUsed > 0 ){
2008-11-08 18:33:40 +00:00
diskUsed = workingUsed*100/size # calculate used percentage
diskUsed = sprintf( "%.1f", diskUsed )
size = sprintf( "%.1f", size )
2008-11-08 04:50:09 +00:00
print size"GB,"diskUsed"% used"
}
else {
print "NA,-" # print an empty array, this will be further handled in the print out function
}
}' /proc/partitions ) )
IFS="$ORIGINAL_IFS"
}
2008-11-07 17:38:30 +00:00
2008-11-08 04:50:09 +00:00
## fills out the A_HDD_DATA array with disk names
get_hard_drive_data_advanced()
{
2008-11-08 05:18:01 +00:00
local a_temp_working='' a_temp_scsi='' temp_holder='' temp_name='' i='' j=''
2008-11-07 19:59:11 +00:00
2008-11-08 07:24:52 +00:00
## check for all ide type drives, non libata, only do it if hdx is in array
2008-11-08 04:50:09 +00:00
if [[ -n $( egrep 'hd[a-z]' <<< ${A_HDD_DATA[@]} ) ]];then
# remember, we're using the last array item to store the total size of disks
for (( i=0; i < ${#A_HDD_DATA[@]} - 1; i++ ))
do
IFS=","
a_temp_working=( ${A_HDD_DATA[i]} )
IFS="$ORIGINAL_IFS"
if [[ -n $( egrep '^hd[a-z]' <<< ${a_temp_working[0]} ) ]];then
if [[ -e /proc/ide/${a_temp_working[0]}/model ]];then
a_temp_working[2]="$( remove_erroneous_chars /proc/ide/${a_temp_working[0]}/model )"
else
2008-11-08 07:24:52 +00:00
a_temp_working[2]="Name n/a"
2008-11-08 04:50:09 +00:00
fi
# these loops are to easily extend the cpu array created in the awk script above with more fields per cpu.
for (( j=0; j < ${#a_temp_working[@]}; j++ ))
do
if [[ $j -gt 0 ]];then
A_HDD_DATA[i]="${A_HDD_DATA[i]},${a_temp_working[$j]}"
else
A_HDD_DATA[i]="${a_temp_working[$j]}"
fi
done
fi
done
2008-10-30 05:04:11 +00:00
fi
2008-11-07 20:45:25 +00:00
2008-11-08 04:50:09 +00:00
## then handle libata names
# first get the ata device names, put them into an array
if [[ -e /proc/scsi/sg/device_strs ]]; then
IFS=$'\n'
## prints out hdd device if field one is ATA type (sata compatibility mode) or prints out scsi device
2008-11-08 05:34:57 +00:00
# note: pmap handles usb mounted devices, which have a null first field
2008-11-08 04:50:09 +00:00
a_temp_scsi=( $( gawk -F'\t' '
BEGIN { IGNORECASE=1 }
2008-11-08 06:25:31 +00:00
# if the item starts with empty, void field, assume it is flash drive
/^ata|^scsi|^ / {
2008-11-08 05:34:57 +00:00
gsub(/,/, " ", $(NF -1) )
gsub(/^ +| +$/, "", $(NF -1) )
print $(NF -1)
2008-11-08 04:50:09 +00:00
}
' /proc/scsi/sg/device_strs ) )
IFS="$ORIGINAL_IFS"
fi
2008-11-07 20:45:25 +00:00
2008-11-08 04:50:09 +00:00
## then we'll loop through that array looking for matches. Note, with identical drives this will fail, sigh..
## for future use, that should be tightened up, but for now it's fine.
if [[ -n $( egrep 'sd[a-z]' <<< ${A_HDD_DATA[@]} ) ]];then
for (( i=0; i < ${#A_HDD_DATA[@]} - 1; i++ ))
do
if [[ -n $( egrep '^sd[a-z]' <<< ${A_HDD_DATA[$i]} ) ]];then
IFS=","
a_temp_working=( ${A_HDD_DATA[$i]} )
IFS="$ORIGINAL_IFS"
2008-11-07 20:45:25 +00:00
2008-11-08 04:50:09 +00:00
for (( j=0; j < ${#a_temp_scsi[@]}; j++ ))
do
## ok, ok, it's incomprehensible, search /dev/disk/by-id for a line that contains the
# discovered disk name AND ends with the correct identifier, sdx
2008-11-08 05:18:01 +00:00
temp_name=$( tr ' ' '_' <<< ${a_temp_scsi[$j]} | cut -d '-' -f 1 ) # get rid of whitespace for WDC
# echo temp_name:$temp_name
if [[ -n $( ls -l /dev/disk/by-id | egrep -m1 ".*$temp_name.*${a_temp_working[0]}$" ) ]];then
2008-11-08 04:50:09 +00:00
a_temp_working[2]=${a_temp_scsi[$j]}
break
else
2008-11-08 05:34:57 +00:00
# special initial usb handling
# if [[ -n $( ls -l /dev/disk/by-id | egrep -m1 ".*/USB.*${a_temp_working[0]}$" ) ]];then
#
# else
2008-11-08 07:24:52 +00:00
a_temp_working[2]="Name n/a"
2008-11-08 05:34:57 +00:00
# fi
2008-11-08 04:50:09 +00:00
fi
done
# these loops are to easily extend the cpu array created in the awk script above with more fields per cpu.
for (( j=0; j < ${#a_temp_working[@]}; j++ ))
do
if [[ $j -gt 0 ]];then
A_HDD_DATA[i]="${A_HDD_DATA[i]},${a_temp_working[$j]}"
else
A_HDD_DATA[i]="${a_temp_working[$j]}"
fi
done
fi
done
fi
}
2008-11-07 20:45:25 +00:00
2008-10-31 20:20:44 +00:00
get_lspci_data()
{
2008-11-07 19:59:11 +00:00
echo "$( lspci -v | gawk '{
2008-11-06 21:18:11 +00:00
gsub(/\(prog-if[^)]*\)/,"")
2008-11-07 17:38:30 +00:00
print
2008-11-06 20:58:35 +00:00
}' )"
2008-10-30 05:04:11 +00:00
}
2008-10-30 21:23:29 +00:00
## return memory used/installed
2008-10-30 05:04:11 +00:00
get_memory_data()
{
2008-10-30 20:32:53 +00:00
local memory=''
2008-11-07 17:38:30 +00:00
2008-10-30 20:32:53 +00:00
memory=$( gawk '
2008-10-30 05:04:11 +00:00
/^MemTotal:/ { tot = $2 }
/^(MemFree|Buffers|Cached):/ { notused+=$2 }
END {
used = tot-notused
printf("%.1f/%.1fMB\n", used/1024, tot/1024)
}' /proc/meminfo )
2008-11-07 17:38:30 +00:00
2008-10-30 20:32:53 +00:00
echo "$memory"
2008-10-30 05:04:11 +00:00
}
2008-10-30 21:23:29 +00:00
## create array of network cards
2008-10-29 21:23:29 +00:00
get_networking_data()
2008-10-28 04:14:35 +00:00
{
2008-10-29 21:23:29 +00:00
IFS=$'\n'
2008-11-05 22:48:56 +00:00
A_NETWORK_DATA=( $( echo "$lspci_data" | gawk '
2008-10-28 04:14:35 +00:00
BEGIN { IGNORECASE=1 }
/^[0-9a-f:.]+ (ethernet|network) (controller|bridge)/ || /^[0-9a-f:.]+ [^:]+: .*(ethernet|network).*$/ {
nic=gensub(/^[0-9a-f:.]+ [^:]+: (.+)$/,"\\1","g",$0)
gsub(/realtek semiconductor/, "Realtek", nic)
gsub(/davicom semiconductor/, "Davicom", nic)
2008-11-06 23:08:34 +00:00
# The doublequotes are necessary because of the pipes in the variable.
2008-11-06 19:59:58 +00:00
gsub(/'"$BAN_LIST_NORMAL"'/, "", nic)
Got rid of sanitize_data feature, which forces double dips into awk, instead I put hte cleaners for , and whitespace into
each awk statement. This avoids exiting awk, then looping through the array in bash, then sending the array items to the
cleaner function, back into awk, then sending it back, and rebuilding the array.
I tried putting the gawk cleaners into a variable and using the variable, but that didn't work as expected, but I'll see
if i can figure out how to get that working.
2008-11-06 20:32:19 +00:00
gsub(/,/, " ", nic)
gsub(/^ +| +$/, "", nic)
gsub(/ [ \t]+/, " ", nic)
2008-11-07 17:38:30 +00:00
2008-10-28 04:14:35 +00:00
eth[nic]++
while (getline && !/^$/) {
Got rid of sanitize_data feature, which forces double dips into awk, instead I put hte cleaners for , and whitespace into
each awk statement. This avoids exiting awk, then looping through the array in bash, then sending the array items to the
cleaner function, back into awk, then sending it back, and rebuilding the array.
I tried putting the gawk cleaners into a variable and using the variable, but that didn't work as expected, but I'll see
if i can figure out how to get that working.
2008-11-06 20:32:19 +00:00
if (/I\/O/) {
ports[nic]=ports[nic]$4" "
}
2008-10-28 04:14:35 +00:00
}
}
2008-11-07 17:38:30 +00:00
2008-10-28 04:14:35 +00:00
END {
j=0
for (i in eth) {
2008-11-04 02:14:12 +00:00
usePorts=""
2008-10-28 04:14:35 +00:00
if (eth[i]>1) {
a[j]=eth[i]"x "i
2008-11-04 04:01:02 +00:00
## note: this loses the plural ports case, is it needed anyway?
2008-11-04 02:14:12 +00:00
if (ports[i] != "") {
usePorts=ports[i]
}
2008-10-28 04:14:35 +00:00
}
else {
a[j]=i
2008-11-03 20:41:39 +00:00
if (ports[i] != "") {
2008-11-04 02:14:12 +00:00
usePorts=ports[i]
2008-11-03 20:41:39 +00:00
}
2008-10-28 04:14:35 +00:00
}
2008-11-04 02:14:12 +00:00
# create array primary item for master array
print a[j] "," usePorts
2008-10-28 04:14:35 +00:00
j++
}
2008-11-06 21:39:18 +00:00
}') )
2008-11-03 22:37:57 +00:00
IFS="$ORIGINAL_IFS"
2008-10-29 21:23:29 +00:00
}
2008-10-28 04:14:35 +00:00
2008-11-04 03:03:29 +00:00
get_partition_data()
{
IFS=$'\n'
# sample line: /dev/sda2 ext3 15G 8.9G 4.9G 65% /home
2008-11-07 17:38:30 +00:00
# $NF = partition name; $(NF - 4) = partition size; $(NF - 3) = used, in gB; $(NF - 1) = percent used
2008-11-07 19:59:11 +00:00
## note: by subtracting from the last field number NF, we avoid a subtle issue with LVM df output, where if
2008-11-07 17:38:30 +00:00
## the first field is too long, it will occupy its own line, this way we are getting only the needed data
2008-11-07 19:59:11 +00:00
A_PARTITION_DATA=( $( df -h -T | gawk '
2008-11-07 17:38:30 +00:00
/\/$|\/boot$|\/var$|\/home$/ {
print $NF "," $(NF - 4) "," $(NF - 3) "," $(NF - 1)
}' ) )
2008-11-04 03:03:29 +00:00
IFS="$ORIGINAL_IFS"
}
2008-10-30 21:23:29 +00:00
## return uptime string
2008-10-30 20:32:53 +00:00
get_uptime()
2008-10-30 05:04:11 +00:00
{
2008-10-31 01:34:51 +00:00
## note: removing gsub(/ /,"",a); to get get space back in there, goes right before print a
2008-11-07 17:38:30 +00:00
echo $( uptime | gawk '{
2008-11-05 23:54:14 +00:00
a = gensub(/^.*up *([^,]*).*$/,"\\1","g",$0)
2008-11-07 17:38:30 +00:00
print a
2008-11-05 23:54:14 +00:00
}' )
2008-10-30 05:04:11 +00:00
}
2008-11-05 22:23:53 +00:00
#### -------------------------------------------------------------------
#### special data handling for specific options and conditions
#### -------------------------------------------------------------------
2008-11-03 22:37:57 +00:00
## multiply the core count by the data to be calculated, bmips, cache
# args: $1 - string to handle; $2 - cpu count
calculate_multicore_data()
{
local string_number=$1 string_data=''
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ -n $( egrep -i '( mb| kb)' <<< $1 ) ]];then
2008-11-07 19:59:11 +00:00
string_data=" $( gawk '{print $2}' <<< $1 )" # add a space for output
string_number=$( gawk '{print $1}' <<< $1 )
2008-11-03 22:37:57 +00:00
fi
2008-11-04 03:13:01 +00:00
# handle weird error cases where it's not a number
2008-11-06 19:43:28 +00:00
if [[ -n $( egrep '^[0-9\.,]+$' <<< $string_number ) ]];then
2008-11-07 19:59:11 +00:00
string_number=$( echo $string_number $2 | gawk '{total = $1*$2; print total}' )
2008-11-06 19:43:28 +00:00
elif [[ $string_number == '' ]];then
2008-11-04 04:45:02 +00:00
string_number='Not Available'
2008-11-04 03:13:01 +00:00
else
2008-11-04 04:45:02 +00:00
string_number="Error data:$string_number "
2008-11-04 03:13:01 +00:00
fi
2008-11-03 22:37:57 +00:00
echo "$string_number$string_data"
}
2008-11-05 23:15:09 +00:00
# prints out shortened list of flags, the main ones of interest
2008-11-05 22:23:53 +00:00
# args: $1 - string of cpu flags to process
process_cpu_flags()
{
local cpu_flags="$1"
2008-11-07 17:38:30 +00:00
2008-11-05 22:23:53 +00:00
# nx = AMD stack protection extensions
# lm = Intel 64bit extensions
# sse, sse2, pni = sse1,2,3 gfx extensions
# svm = AMD pacifica virtualization extensions
# vmx = Intel IVT (vanderpool) virtualization extensions
2008-11-07 19:59:11 +00:00
cpu_flags=$( echo "$cpu_flags" | gawk '
2008-11-05 22:23:53 +00:00
BEGIN {
RS=" "
ssel["sse"] = 1
ssel["sse2"] = 2
ssel["pni"] = 3
sses[1] = "sse"
sses[2] = "sse2"
sses[3] = "sse3"
}
/^(nx|lm|svm|vmx)$/ {
2008-11-07 17:38:30 +00:00
if (s) {
s = s " " $0
2008-11-05 22:23:53 +00:00
}
2008-11-07 17:38:30 +00:00
else {
s = $0
2008-11-05 22:23:53 +00:00
}
}
/^(sse2?|pni)$/ {
if (ssel[$0] > sse) {
sse = ssel[$0]
}
2008-11-07 17:38:30 +00:00
}
2008-11-05 22:23:53 +00:00
END {
if (sse) {
if (s) {
s = sses[sse] " " s
}
else {
s = sses[sse]
}
}
print s
2008-11-06 21:39:18 +00:00
}' )
2008-11-07 17:38:30 +00:00
2008-11-05 22:23:53 +00:00
#grep -oE '\<(nx|lm|sse[0-9]?|pni|svm|vmx)\>' | tr '\n' ' '))
2008-11-06 19:43:28 +00:00
if [[ -z $cpu_flags ]];then
2008-11-05 22:23:53 +00:00
cpu_flags="-"
fi
echo "$cpu_flags"
}
2008-10-29 21:23:29 +00:00
#### -------------------------------------------------------------------
#### print and processing of output data
#### -------------------------------------------------------------------
2008-11-04 20:02:05 +00:00
print_audio_data()
{
local i='' card_one='Card-1 ' audio_data='' a_audio_data='' port_data=''
local a_audio_working=''
# set A_AUDIO_DATA
get_audio_data
IFS=","
a_audio_working=(${A_AUDIO_DATA[0]})
2008-11-07 17:38:30 +00:00
IFS="$ORIGINAL_IFS"
2008-11-04 20:02:05 +00:00
if [[ -n ${A_AUDIO_DATA[@]} ]];then
if [[ ${#A_AUDIO_DATA[@]} -le 1 ]];then
card_one='Card '
fi
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ -n ${a_audio_working[1]} ]];then
2008-11-04 20:02:05 +00:00
port_data=" ${C1}at port${C2} ${a_audio_working[1]}"
fi
audio_data="${C1}$card_one${C2}${a_audio_working[0]}$port_data"
audio_data=$( create_print_line "Sound:" "$audio_data" )
print_screen_output "$audio_data"
i=0 ## loop starts with 1 by auto-increment so it only shows cards > 1
while [[ -n ${A_AUDIO_DATA[++i]} ]]
do
IFS=","
a_audio_working=( ${A_AUDIO_DATA[i]} )
2008-11-07 17:38:30 +00:00
IFS="$ORIGINAL_IFS"
2008-11-04 20:02:05 +00:00
port_data=''
2008-11-06 19:43:28 +00:00
if [[ -n ${a_audio_working[1]} ]];then
2008-11-04 20:02:05 +00:00
port_data=" ${C1}at port${C2} ${a_audio_working[1]}"
fi
audio_data="${C1}Card-$(( $i + 1 )) ${C2}${a_audio_working[0]}$port_data"
audio_data=$( create_print_line " " "$audio_data" )
print_screen_output "$audio_data"
done
fi
}
2008-10-29 21:23:29 +00:00
print_cpu_data()
{
2008-11-05 22:23:53 +00:00
local cpu_data='' i='' cpu_clock_speed='' cpu_multi_clock_data=''
local bmip_data='' cpu_cache='' cpu_vendor='' cpu_flags=''
2008-11-03 21:04:21 +00:00
2008-10-31 21:12:23 +00:00
##print_screen_output "A_CPU_DATA[0]=\"${A_CPU_DATA[0]}\""
2008-11-07 17:38:30 +00:00
# Array A_CPU_DATA always has one element: max clockfreq found.
2008-11-05 22:23:53 +00:00
# that's why its count is one more than you'd think from cores/cpus alone
# weird hack, probably should be changed
2008-11-07 20:04:28 +00:00
cpu_vendor=${a_cpu_working[5]}
2008-10-29 21:23:29 +00:00
# Strange (and also some expected) behavior encountered.
2008-11-07 17:38:30 +00:00
# If print_screen_output() uses $1 as the parameter to output to the screen,
2008-10-29 21:23:29 +00:00
# then passing "<text1> ${ARR[@]} <text2>"
2008-11-07 17:38:30 +00:00
# will output only <text1> and the first element of ARR. That "@" splits in elements and "*" _doesn't_,
2008-10-29 21:23:29 +00:00
# is to be expected.
2008-11-07 17:38:30 +00:00
# However, that text2 is consecutively truncated is somewhat strange, so take note.
2008-10-29 21:23:29 +00:00
# This has been confirmed by #bash on freenode.
# The above mentioned only emerges when using the debugging markers below
2008-10-31 21:12:23 +00:00
## print_screen_output "a_cpu_working=\"***${a_cpu_working[@]} $hostName+++++++\"----------"
2008-10-29 21:23:29 +00:00
2008-10-30 17:18:02 +00:00
if [[ -z ${a_cpu_working[2]} ]];then
2008-10-29 21:23:29 +00:00
a_cpu_working[2]="unknown"
fi
2008-11-05 22:23:53 +00:00
2008-11-03 22:37:57 +00:00
cpu_data=$( create_print_line "CPU:" "${C1}${cpu_core_count_string}${C2} ${a_cpu_working[0]}" )
2008-11-06 19:43:28 +00:00
if [[ $VERBOSITY_LEVEL -ge 3 ]];then
2008-11-04 20:02:05 +00:00
# update for multicore, bogomips x core count.
2008-11-06 19:43:28 +00:00
if [[ $B_EXTRA_DATA == 'true' ]];then
# if [[ $cpu_vendor != 'intel' ]];then
2008-11-05 02:32:53 +00:00
bmip_data=$( calculate_multicore_data "${a_cpu_working[4]}" "$cpu_core_count" )
# else
# bmip_data="${a_cpu_working[4]}"
# fi
2008-11-03 22:37:57 +00:00
bmip_data=" ${C1}bmips${C2} $bmip_data"
2008-11-03 21:30:34 +00:00
fi
2008-11-05 02:32:53 +00:00
## note: this handles how intel reports L2, total instead of per core like AMD does
2008-11-06 19:43:28 +00:00
if [[ $cpu_vendor != 'intel' ]];then
2008-11-05 02:32:53 +00:00
cpu_cache=$( calculate_multicore_data "${a_cpu_working[2]}" "$cpu_core_count" )
else
cpu_cache="${a_cpu_working[2]}"
fi
2008-11-07 17:38:30 +00:00
# only print shortened list
2008-11-06 19:43:28 +00:00
if [[ $B_CPU_FLAGS_FULL != 'true' ]];then
2008-11-05 22:23:53 +00:00
cpu_flags=$( process_cpu_flags "${a_cpu_working[3]}" )
cpu_flags=" ${C1}flags${C2} ($cpu_flags)"
fi
cpu_data="$cpu_data${C2} ${C1}cache${C2} $cpu_cache$cpu_flags$bmip_data${CN}"
2008-10-29 21:23:29 +00:00
fi
2008-10-31 21:12:23 +00:00
2008-11-06 19:43:28 +00:00
if [[ $VERBOSITY_LEVEL -ge 5 && ${#A_CPU_DATA[@]} -gt 2 ]];then
2008-10-31 21:12:23 +00:00
cpu_clock_speed='' # null < verbosity level 5
else
cpu_data="$cpu_data ${C1}clocked at${C2} ${a_cpu_working[1]} MHz${CN}"
fi
2008-11-07 17:38:30 +00:00
2008-10-31 21:12:23 +00:00
cpu_data="$cpu_data $cpu_clock_speed"
2008-10-29 21:23:29 +00:00
print_screen_output "$cpu_data"
2008-11-03 21:04:21 +00:00
2008-11-06 19:43:28 +00:00
if [[ $VERBOSITY_LEVEL -ge 5 && ${#A_CPU_DATA[@]} -gt 2 ]];then
2008-10-31 21:12:23 +00:00
for (( i=0; i < ${#A_CPU_DATA[@]}-1; i++ ))
do
IFS=","
a_cpu_working=(${A_CPU_DATA[i]})
2008-11-03 22:37:57 +00:00
IFS="$ORIGINAL_IFS"
2008-10-31 21:12:23 +00:00
cpu_multi_clock_data="$cpu_multi_clock_data ${C1}($(( i + 1 )))${C2} ${a_cpu_working[1]} MHz${CN}"
2008-11-06 19:43:28 +00:00
if [[ $i -gt 10 ]];then
2008-10-31 21:12:23 +00:00
break
fi
done
2008-11-06 19:43:28 +00:00
if [[ -n $cpu_multi_clock_data ]];then
2008-10-31 21:12:23 +00:00
cpu_multi_clock_data=$( create_print_line " " "${C1}Clock Speeds:${C2}$cpu_multi_clock_data" )
print_screen_output "$cpu_multi_clock_data"
fi
fi
2008-11-06 19:43:28 +00:00
if [[ $B_CPU_FLAGS_FULL == 'true' ]];then
2008-11-05 22:23:53 +00:00
print_cpu_flags_full "${a_cpu_working[3]}"
fi
}
# takes list of all flags, split them and prints x per line
# args: $1 - cpu flag string
print_cpu_flags_full()
{
2008-11-05 22:48:56 +00:00
local cpu_flags_full="$1" cpu_flags_1='' cpu_flags_2='' cpu_flags_3='' flag_data=''
local i=0 flag=''
2008-11-07 17:38:30 +00:00
2008-11-05 22:23:53 +00:00
for flag in $cpu_flags_full
do
2008-11-06 19:43:28 +00:00
if [[ $i -ge 36 ]];then
2008-11-05 22:23:53 +00:00
cpu_flags_3="$cpu_flags_3$flag "
2008-11-06 19:43:28 +00:00
elif [[ $i -ge 18 ]];then
2008-11-05 22:23:53 +00:00
cpu_flags_2="$cpu_flags_2$flag "
2008-11-06 19:43:28 +00:00
elif [[ $i -ge 0 ]];then
2008-11-05 22:23:53 +00:00
cpu_flags_1="$cpu_flags_1$flag "
fi
((i++))
done
2008-11-06 19:43:28 +00:00
if [[ -n $cpu_flags_1 ]];then
2008-11-05 22:23:53 +00:00
flag_data=$( create_print_line " " "${C1}CPU Flags${C2} $cpu_flags_1" )
print_screen_output "$flag_data"
fi
2008-11-06 19:43:28 +00:00
if [[ -n $cpu_flags_2 ]];then
2008-11-05 22:23:53 +00:00
flag_data=$( create_print_line " " "$cpu_flags_2" )
print_screen_output "$flag_data"
fi
2008-11-06 19:43:28 +00:00
if [[ -n $cpu_flags_3 ]];then
2008-11-05 22:23:53 +00:00
flag_data=$( create_print_line " " "$cpu_flags_3" )
print_screen_output "$flag_data"
fi
2008-10-29 21:23:29 +00:00
}
print_gfx_data()
{
2008-11-07 17:38:30 +00:00
local gfx_data='' i='' card_one='Card '
2008-10-30 21:23:29 +00:00
local screen_resolution="$( get_graphics_res_data )"
2008-10-30 20:32:53 +00:00
local b_is_mesa='false'
2008-11-07 17:38:30 +00:00
2008-10-30 20:32:53 +00:00
# set A_GFX_CARD_DATA
get_graphics_card_data
# set A_X_DATA
get_graphics_x_data
local x_vendor=${A_X_DATA[0]}
local x_version=${A_X_DATA[1]}
# set A_GLX_DATA
get_graphics_glx_data
local glx_renderer="${A_GLX_DATA[0]}"
local glx_version="${A_GLX_DATA[1]}"
local glx_direct_render="${A_GLX_DATA[2]}"
2008-11-07 17:38:30 +00:00
2008-10-30 20:32:53 +00:00
if [[ ${#A_GFX_CARD_DATA[@]} -gt 1 ]];then
2008-10-29 21:23:29 +00:00
i=1
2008-10-30 20:32:53 +00:00
while [[ -n ${A_GFX_CARD_DATA[i]} && $i -le 3 ]]
2008-10-28 04:14:35 +00:00
do
2008-10-30 20:32:53 +00:00
gfx_data=" ${C1}Card-$(($i+1))${C2} ${A_GFX_CARD_DATA[i]}"
2008-10-30 07:23:45 +00:00
((i++))
2008-10-28 04:14:35 +00:00
done
2008-10-30 05:38:10 +00:00
card_one='Card-1 '
2008-10-28 00:40:43 +00:00
fi
2008-10-30 20:32:53 +00:00
gfx_data=$( create_print_line "Graphics:" "${C1}$card_one${C2}${A_GFX_CARD_DATA[0]}${gfx_data}" )
2008-11-06 19:43:28 +00:00
if [[ $B_X_RUNNING == 'true' ]];then
2008-10-30 20:32:53 +00:00
gfx_data="${gfx_data} ${CN}| ${C1}$x_vendor${C2} $x_version ${CN}| ${C1}Res${C2} ${screen_resolution}"
2008-10-29 21:23:29 +00:00
else
2008-10-30 20:32:53 +00:00
gfx_data="${gfx_data} ${C1} tty resolution ${CN}(${C2} ${screen_resolution} ${CN})"
2008-10-29 21:23:29 +00:00
fi
print_screen_output "$gfx_data"
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ -z $glx_renderer || -z $glx_version ]];then
2008-10-30 20:32:53 +00:00
b_is_mesa='true'
fi
2008-11-07 17:38:30 +00:00
2008-10-30 20:32:53 +00:00
## note: if glx render or version have no content, then mesa is true
2008-11-06 19:43:28 +00:00
if [[ $B_X_RUNNING == 'true' && $b_is_mesa != 'true' ]];then
2008-10-30 20:32:53 +00:00
gfx_data=$( create_print_line " " "${C1}GLX Renderer${C2} ${glx_renderer} ${CN}| ${C1}GLX Version${C2} ${glx_version}${CN}" )
2008-11-06 19:43:28 +00:00
if [[ $B_HANDLE_CORRUPT_DATA == 'true' ]];then
2008-10-30 20:32:53 +00:00
gfx_data="${gfx_data} ${C1}Direct rendering${C2} ${glx_direct_render}${CN}"
2008-10-29 21:23:29 +00:00
fi
print_screen_output "$gfx_data"
fi
2008-10-28 04:14:35 +00:00
}
2008-10-28 00:40:43 +00:00
2008-10-29 21:23:29 +00:00
print_hard_disk_data()
2008-10-28 04:14:35 +00:00
{
2008-11-08 04:50:09 +00:00
local hdd_data='' partition_data='' a_partition_working='' hdd_model='' a_hdd_working=''
2008-11-08 06:06:08 +00:00
local dev_data='' size_data='' hdd_model_2='' hdd_data_2=''
2008-10-29 21:23:29 +00:00
2008-11-06 19:43:28 +00:00
if [[ $VERBOSITY_LEVEL -ge 3 ]];then
2008-11-08 04:50:09 +00:00
## note: the output part of this should be in the print hdd data function, not here
get_hard_drive_data_advanced
for (( i=0; i < ${#A_HDD_DATA[@]} - 1; i++ ))
do
# this adds the (x) numbering in front of each disk found, and creates the full disk string
IFS=","
a_hdd_working=( ${A_HDD_DATA[i]} )
IFS="$ORIGINAL_IFS"
if [[ $B_EXTRA_DATA == 'true' ]];then
dev_data="/dev/${a_hdd_working[0]} - "
size_data=" - ${a_hdd_working[1]}"
fi
2008-11-08 06:06:08 +00:00
# wrap to avoid long lines
if [[ $i -gt 1 && $B_EXTRA_DATA == 'true' ]] || [[ $i -gt 3 ]];then
hdd_model_2="${hdd_model_2}${hdd_model_2+${C1}($(($i+1)))${C2}}$dev_data${a_hdd_working[2]}$size_data "
else
hdd_model="${hdd_model}${hdd_model+ ${C1}($(($i+1)))${C2}}$dev_data${a_hdd_working[2]}$size_data"
fi
2008-11-08 04:50:09 +00:00
done
if [[ -z $hdd_model ]];then
2008-11-08 06:43:30 +00:00
hdd_model=' None Detected'
2008-11-08 04:50:09 +00:00
fi
2008-11-08 06:06:08 +00:00
if [[ -n $hdd_model_2 ]];then
hdd_data=$( create_print_line "Disks:" "${C1}HDD${C2} ${C1}Total Size:${C2} ${hdd_capacity} (${hdd_used})${hdd_model}" )
hdd_data_2=$( create_print_line " " "${hdd_model_2}${CN}" )
else
hdd_data=$( create_print_line "Disks:" "${C1}HDD${C2} ${C1}Total Size:${C2} ${hdd_capacity} (${hdd_used})${hdd_model}${CN}" )
fi
2008-10-29 21:23:29 +00:00
else
2008-11-08 06:06:08 +00:00
hdd_data=$( create_print_line "Disks:" "${C1}HDD Total Size:${C2} ${hdd_capacity} (${hdd_used})${CN}" )
2008-10-29 21:23:29 +00:00
fi
print_screen_output "$hdd_data"
2008-11-08 06:06:08 +00:00
if [[ -n $hdd_model_2 ]];then
print_screen_output "$hdd_data_2"
fi
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ $VERBOSITY_LEVEL -ge 4 ]];then
2008-11-04 03:03:29 +00:00
# set A_PARTITION_DATA
get_partition_data
2008-11-07 17:38:30 +00:00
2008-11-04 03:03:29 +00:00
for (( i=0; i < ${#A_PARTITION_DATA[@]}; i++ ))
do
IFS=","
a_partition_working=(${A_PARTITION_DATA[i]})
2008-11-07 17:38:30 +00:00
IFS="$ORIGINAL_IFS"
2008-11-04 03:03:29 +00:00
partition_data="$partition_data ${C1}ID:${C2} ${a_partition_working[0]} ${C1}size:${C2} ${a_partition_working[1]} ${C1}used:${C2} ${a_partition_working[2]} (${a_partition_working[3]})"
done
2008-11-07 19:59:11 +00:00
hdd_data=$( create_print_line " " "${C1}Partition${C2}${partition_data}" )
2008-10-29 21:23:29 +00:00
print_screen_output "$hdd_data"
fi
}
print_intro_data()
{
local intro_data='' host_name=$( hostname )
2008-11-07 17:38:30 +00:00
2008-10-30 21:23:29 +00:00
local distro="$( get_distro_data )"
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ $B_SHOW_HOST == 'true' ]];then
2008-10-29 23:02:24 +00:00
intro_data=$( create_print_line "System:" "${C1}Host${C2} $host_name ${C1}running${C2} ${CN}" )
2008-10-29 21:23:29 +00:00
else
2008-10-29 23:02:24 +00:00
intro_data=$( create_print_line "System:" "${C1}running${C2} ${CN}" )
2008-10-29 21:23:29 +00:00
fi
2008-10-30 21:23:29 +00:00
intro_data="$intro_data ${C2}$current_kernel ${C1}Distro${C2} $distro ${CN}"
2008-10-29 21:23:29 +00:00
print_screen_output "$intro_data"
}
print_networking_data()
{
2008-11-04 20:02:05 +00:00
local i='' card_one='Card-1 ' network_data='' a_network_working='' port_data=''
2008-10-30 20:32:53 +00:00
# set A_NETWORK_DATA
get_networking_data
2008-11-04 02:14:12 +00:00
IFS=","
a_network_working=(${A_NETWORK_DATA[0]})
2008-11-07 17:38:30 +00:00
IFS="$ORIGINAL_IFS"
2008-10-30 17:18:02 +00:00
if [[ -n ${A_NETWORK_DATA[@]} ]];then
if [[ ${#A_NETWORK_DATA[@]} -le 1 ]];then
2008-10-31 06:45:21 +00:00
card_one='Card '
2008-10-28 04:14:35 +00:00
fi
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ -n ${a_network_working[1]} ]];then
2008-11-04 02:14:12 +00:00
port_data=" ${C1}at port${C2} ${a_network_working[1]}"
fi
network_data="${C1}$card_one${C2}${a_network_working[0]}$port_data"
network_data=$( create_print_line "Network:" "$network_data" )
2008-10-29 23:02:24 +00:00
print_screen_output "$network_data"
2008-11-04 05:39:26 +00:00
i=0 ## loop starts with 1 by auto-increment so it only shows cards > 1
2008-10-29 21:23:29 +00:00
while [[ -n ${A_NETWORK_DATA[++i]} ]]
do
2008-11-04 02:14:12 +00:00
IFS=","
a_network_working=( ${A_NETWORK_DATA[i]} )
2008-11-07 17:38:30 +00:00
IFS="$ORIGINAL_IFS"
2008-11-04 02:14:12 +00:00
port_data=''
2008-11-06 19:43:28 +00:00
if [[ -n ${a_network_working[1]} ]];then
2008-11-04 02:14:12 +00:00
port_data=" ${C1}at port${C2} ${a_network_working[1]}"
fi
2008-11-04 02:29:11 +00:00
network_data="${C1}Card-$(( $i + 1 )) ${C2}${a_network_working[0]}$port_data"
2008-11-04 02:14:12 +00:00
network_data=$( create_print_line " " "$network_data" )
2008-10-29 23:02:24 +00:00
print_screen_output "$network_data"
2008-10-29 21:23:29 +00:00
done
fi
}
print_short_data()
{
2008-10-30 20:32:53 +00:00
local short_data='' i='' b_background_black='false'
local memory=$( get_memory_data )
2008-11-05 22:23:53 +00:00
local cpu_clock="${a_cpu_working[1]}" # old CPU3
# this gets that weird min/max final array item
local min_max_clock_nu=$(( ${#A_CPU_DATA[@]} - 1 ))
local min_max_clock=${A_CPU_DATA[$min_max_clock_nu]}
2008-11-07 17:38:30 +00:00
2008-10-29 21:23:29 +00:00
#set_color_scheme 12
2008-11-06 19:43:28 +00:00
if [[ $B_RUNNING_IN_SHELL == 'false' ]];then
2008-10-29 21:23:29 +00:00
for i in $C1 $C2 $CN
2008-10-28 04:14:35 +00:00
do
2008-11-07 17:38:30 +00:00
case "$i" in
"$GREEN"|"$WHITE"|"$YELLOW"|"$CYAN")
2008-10-30 21:23:29 +00:00
b_background_black='true'
2008-10-30 20:32:53 +00:00
;;
2008-10-29 21:23:29 +00:00
esac
2008-10-28 04:14:35 +00:00
done
2008-11-06 19:43:28 +00:00
if [[ $b_background_black == 'true' ]];then
2008-10-29 21:23:29 +00:00
for i in C1 C2 CN
2008-10-29 07:29:17 +00:00
do
2008-11-06 19:43:28 +00:00
## these need to be in quotes, don't know why
if [[ "${!i}" == "$NORMAL" ]];then
2008-10-29 21:23:29 +00:00
declare $i="${!i}15,1"
else
declare $i="${!i},1"
fi
2008-10-29 07:29:17 +00:00
done
2008-10-29 21:23:29 +00:00
#C1="${C1},1"; C2="${C2},1"; CN="${CN},1"
2008-10-29 07:29:17 +00:00
fi
2008-10-29 21:23:29 +00:00
fi
2008-11-05 22:23:53 +00:00
short_data="${C1}CPU${CN}[${C2}${cpu_core_count_string} ${cpu_model} ${C1}clocked at${C2} ${min_max_clock}${CN}] ${C1}Kernel${CN}[${C2}${current_kernel}${CN}] ${C1}Up${CN}[${C2}${FL2}${FL1}${up_time}${FL1}${CN}] ${C1}Mem${CN}[${C2}${FL2}${FL1}${memory}${FL1}${CN}] ${C1}HDD${CN}[${C2}${FL2}${FL1}${hdd_capacity}($hdd_used)${FL1}${CN}] ${C1}Procs${CN}[${C2}${FL2}${FL1}${processes}${FL1}${CN}]"
2008-10-29 22:00:17 +00:00
2008-11-06 19:43:28 +00:00
if [[ $SHOW_IRC -gt 0 ]];then
2008-10-30 05:58:18 +00:00
short_data="${short_data} ${C1}Client${CN}[${C2}${IRC_CLIENT}${IRC_CLIENT_VERSION}${CN}]"
2008-10-29 21:23:29 +00:00
fi
2008-10-30 07:48:20 +00:00
short_data="${short_data} ${CN}:: ${C1}$SCRIPT_NAME ${C2}v:$SCRIPT_VERSION_NUMBER${CN}"
2008-11-06 19:43:28 +00:00
if [[ $SCHEME -gt 0 ]];then
2008-10-30 05:58:18 +00:00
short_data="${short_data} $NORMAL"
2008-10-29 21:23:29 +00:00
fi
print_screen_output "$short_data"
}
2008-10-29 06:54:28 +00:00
2008-10-29 21:23:29 +00:00
print_system_data()
{
2008-10-30 21:23:29 +00:00
local system_data=''
local runlvl="$( runlevel | gawk '{ print $2 }' )"
local memory="$( get_memory_data )"
2008-11-07 17:38:30 +00:00
2008-10-29 21:23:29 +00:00
# Some code could look superfluous but BitchX doesn't like lines not ending in a newline. F*&k that bitch!
2008-10-30 20:32:53 +00:00
# long_last=$( echo -ne "${C1}Processes${C2} ${processes}${CN} | ${C1}Uptime${C2} ${up_time}${CN} | ${C1}Memory${C2} ${MEM}${CN}" )
system_data=$( create_print_line "Info:" "${C1}Processes${C2} ${processes} ${CN}| ${C1}Uptime${C2} ${up_time} ${CN}| ${C1}Memory${C2} ${memory}${CN}" )
2008-11-07 17:38:30 +00:00
2008-10-30 20:32:53 +00:00
# this only triggers if no X data is present
2008-11-06 19:43:28 +00:00
if [[ $B_X_RUNNING != 'true' ]];then
2008-10-30 20:32:53 +00:00
system_data="${system_data} ${CN}| ${C1}Runlevel${C2} ${runlvl}${CN}"
2008-10-29 21:23:29 +00:00
fi
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ $SHOW_IRC -gt 0 ]];then
2008-10-30 05:58:18 +00:00
system_data="${system_data} ${CN}| ${C1}Client${C2} ${IRC_CLIENT}${IRC_CLIENT_VERSION}${CN}"
2008-10-29 21:23:29 +00:00
fi
2008-10-30 07:48:20 +00:00
system_data="${system_data} ${CN}| ${C1}$SCRIPT_NAME ${C2}v:$SCRIPT_VERSION_NUMBER${CN}"
2008-11-07 17:38:30 +00:00
2008-11-06 19:43:28 +00:00
if [[ $SCHEME -gt 0 ]];then
2008-10-30 05:58:18 +00:00
system_data="${system_data} ${NORMAL}"
2008-10-29 21:23:29 +00:00
fi
print_screen_output "$system_data"
}
2008-10-31 21:30:36 +00:00
## main function to print out, master for all sub print functions.
## note that it passes local variable values on to its children,
## and in some cases, their children, with lspci_data
2008-10-29 21:23:29 +00:00
print_it_out()
{
2008-10-30 20:32:53 +00:00
## note: remember that in bash, child functions inherit local variables
2008-10-30 21:23:29 +00:00
local current_kernel=$( uname -a | gawk '{print $1,$3,$(NF-1)}' )
2008-10-30 20:32:53 +00:00
local processes="$(( $( ps aux | wc -l ) - 1 ))"
2008-11-04 22:08:46 +00:00
# set A_CPU_CORE_DATA
get_cpu_core_count
local cpu_core_count_string="${A_CPU_CORE_DATA[1]}"
local cpu_core_count=${A_CPU_CORE_DATA[0]}
2008-10-31 20:20:44 +00:00
local lspci_data='' ## only for verbose needed
2008-10-30 21:23:29 +00:00
local up_time="$( get_uptime )"
2008-10-31 20:20:44 +00:00
## assemble data for output
# load A_HDD_DATA
2008-11-08 04:50:09 +00:00
get_hdd_data_basic
2008-11-07 17:38:30 +00:00
## note: if hdd_model is declared prior to use, whatever string you want inserted will
2008-11-04 05:39:26 +00:00
## be inserted first. In this case, it's desirable to print out (x) before each disk found.
2008-11-08 04:50:09 +00:00
local a_hdd_data_count=$(( ${#A_HDD_DATA[@]} - 1 ))
IFS=","
local a_hdd_basic_working=( ${A_HDD_DATA[$a_hdd_data_count]} )
IFS="$ORIGINAL_IFS"
local hdd_capacity=${a_hdd_basic_working[0]}
local hdd_used=${a_hdd_basic_working[1]}
2008-11-05 22:23:53 +00:00
# load A_CPU_DATA
2008-10-31 20:20:44 +00:00
get_cpu_data
2008-11-07 17:38:30 +00:00
2008-11-05 22:23:53 +00:00
IFS=","
local a_cpu_working=(${A_CPU_DATA[0]})
IFS="$ORIGINAL_IFS"
local cpu_model="${a_cpu_working[0]}"
2008-10-30 20:32:53 +00:00
2008-10-29 21:23:29 +00:00
case "$VERBOSITY_LEVEL" in
2008-11-06 23:08:34 +00:00
0) print_short_data
2008-10-29 21:23:29 +00:00
;;
2008-11-06 23:08:34 +00:00
*) lspci_data="$( get_lspci_data )"
2008-10-29 21:23:29 +00:00
print_intro_data
print_cpu_data
print_gfx_data
2008-11-07 20:45:25 +00:00
if [[ $B_SHOW_SOUND == 'true' ]];then
2008-11-04 20:02:05 +00:00
print_audio_data
fi
2008-11-06 19:43:28 +00:00
if [[ $VERBOSITY_LEVEL -ge 2 ]];then
2008-10-29 21:23:29 +00:00
print_networking_data
2008-10-28 04:14:35 +00:00
fi
2008-11-07 17:38:30 +00:00
2008-10-29 21:23:29 +00:00
print_hard_disk_data
print_system_data
;;
esac
2008-10-28 03:42:28 +00:00
}
########################################################################
#### SCRIPT EXECUTION
########################################################################
2008-10-28 05:18:25 +00:00
set_calculated_variables
2008-10-28 03:42:28 +00:00
# Check for dependencies before running any commands in this script! So yes, here!!
check_script_depends
2008-11-06 19:43:28 +00:00
get_start_client
2008-10-29 01:59:05 +00:00
2008-10-29 02:35:42 +00:00
# note: this only works if it's run from inside konversation as a script builtin or something
# only do this if inxi has been started as a konversation script, otherwise bypass this
2008-11-06 19:43:28 +00:00
if [[ $KONVI -eq 1 ]];then
2008-10-29 02:35:42 +00:00
DCPORT="$1"
DCSERVER="$2"
DCTARGET="$3"
shift 3
# The section below is on request of Argonel from the Konversation developer team:
# it sources config files like $HOME/.kde/share/apps/konversation/scripts/inxi.conf
IFS=":"
for kde_config in $( kde-config --path data )
do
2008-10-30 17:18:02 +00:00
if [[ -r ${kde_config}${KONVI_CFG} ]];then
2008-10-29 02:35:42 +00:00
source "${kde_config}${KONVI_CFG}"
break
fi
done
2008-11-03 22:37:57 +00:00
IFS="$ORIGINAL_IFS"
2008-10-29 02:35:42 +00:00
fi
2008-10-30 21:23:29 +00:00
## leave this for debugging dcop stuff if we get that working
2008-10-29 02:35:42 +00:00
# print_screen_output "DCPORT: $DCPORT"
# print_screen_output "DCSERVER: $DCSERVER"
# print_screen_output "DCTARGET: $DCTARGET"
2008-10-29 01:59:05 +00:00
2008-10-28 03:42:28 +00:00
# "$@" passes every parameter separately quoted, "$*" passes all parameters as one quoted parameter.
get_parameters "$@"
# If no colorscheme was set in the parameter handling routine, then set the default scheme
2008-11-06 19:43:28 +00:00
if [[ $COLOR_SCHEME_SET != 'true' ]];then
2008-10-28 03:42:28 +00:00
set_color_scheme "$DEFAULT_SCHEME"
fi
2008-11-01 21:24:45 +00:00
B_ALL_UP='true'
script_debugger "B_ALL_UP=true : inxi up and running.."
2008-10-28 03:42:28 +00:00
2008-10-28 04:14:35 +00:00
# then create the output
print_it_out
2008-10-28 03:42:28 +00:00
## last steps
2008-11-06 19:43:28 +00:00
if [[ $B_RUNNING_IN_SHELL == 'true' && $SCHEME -gt 0 ]];then
2008-10-28 00:40:43 +00:00
echo -n " [0m"
fi
2008-10-28 03:42:28 +00:00
2008-10-30 21:23:29 +00:00
# weechat's executor plugin forced me to do this, and rightfully so, because else the exit code
# from the last command is taken..
2008-11-07 17:38:30 +00:00
exit 0
2008-11-08 19:15:19 +00:00
## note: this EOF is needed for smxi handling, this is what triggers the full download ok
###**EOF**###