New version, new man. Fine tunings.

New features:
1. for a very few systems that have wmctrl installed, will shows -xxx wm if present

Enhancements:
1. made xorg display server and protocols show more consistently with other layout:
Display: x11 server: X.org 1.9.12 drivers: loaded: ...
if no display protocol found:
Display: server: X.org 1.9.12 drivers: loaded: ...

This brings the -G in line with the other lines, of not putting different data types
inside of parentheses as much as possible. -I still has two of these, but so far it's
not clear how to otherwise show SSH or su/sudo/login in their respective spaces.

Debugger data collector also has something I should have added ages ago, gz filename
now includes the basic 2 digit inxi version number, like 3.0 at end, so I can readily
determine the debugger inxi version, and thus avoid having to root through lots of
versions to find new stuff.

These are all largely cosmetic improvements, or debugger adjustments, except for -Sxxx
now offering wm: if present.

Also changed Desktop: name... (toolkit data) to: Desktop: name... tk: toolkit data
to be more consistent, while not adding great length to the output.

These two changes should also help export to json/xml since that puts unique key/values
back into key value pairs, not merging two together.
This commit is contained in:
Harald Hope 2018-04-12 13:23:46 -07:00
parent 68afc37cca
commit a978bb3729
3 changed files with 135 additions and 57 deletions

116
inxi
View file

@ -20,24 +20,19 @@ use warnings;
use 5.008; use 5.008;
use Cwd qw(abs_path); # qw(abs_path);#abs_path realpath getcwd use Cwd qw(abs_path); # qw(abs_path);#abs_path realpath getcwd
# use Data::Dump qw(dump); # damn, not in core modules
use Data::Dumper qw(Dumper); # print_r use Data::Dumper qw(Dumper); # print_r
# use File::Basename;
use File::Find; use File::Find;
# use Getopt::Long qw(GetOptionsFromArray); # :config no_ignore_case bundling_values
use Getopt::Long qw(GetOptions); use Getopt::Long qw(GetOptions);
# Note: default auto_abbrev is enabled, that's fine # Note: default auto_abbrev is enabled, that's fine
Getopt::Long::Configure ('bundling', 'no_ignore_case', Getopt::Long::Configure ('bundling', 'no_ignore_case',
'no_getopt_compat', 'no_auto_abbrev','pass_through'); 'no_getopt_compat', 'no_auto_abbrev','pass_through');
# use Path::Class; # maybe use, maybe not, for ls /sys
use POSIX qw(uname strftime ttyname); use POSIX qw(uname strftime ttyname);
# use Time::HiRes qw(gettimeofday tv_interval);
# use feature qw(state); # use feature qw(state);
## INXI INFO ## ## INXI INFO ##
my $self_name='inxi'; my $self_name='inxi';
my $self_version='3.0.00'; my $self_version='3.0.01';
my $self_date='2018-04-09'; my $self_date='2018-04-12';
my $self_patch='00'; my $self_patch='00';
## END INXI INFO ## ## END INXI INFO ##
@ -53,16 +48,9 @@ my ($b_hires,$t1,$t2,$t3) = (0,0,0,0);
# NOTE: redhat removed HiRes from Perl Core Modules. Why? who knows. # NOTE: redhat removed HiRes from Perl Core Modules. Why? who knows.
if (eval {require Time::HiRes}){ if (eval {require Time::HiRes}){
Time::HiRes->import('gettimeofday','tv_interval','usleep'); Time::HiRes->import('gettimeofday','tv_interval','usleep');
# import Time::HiRes::gettimeofday();
# import Time::HiRes::tv_interval();
# import Time::HiRes::usleep();
$b_hires = 1; $b_hires = 1;
} }
#print "result:$@\n";
#$b_hires = 1 if defined Time::HiRes::gettimeofday();
@t0 = eval 'Time::HiRes::gettimeofday()' if $b_hires; # let's start it right away @t0 = eval 'Time::HiRes::gettimeofday()' if $b_hires; # let's start it right away
# print "t0: @t0\n";
# print "result:$@\n";
## Hashes ## Hashes
my ( %alerts, %client, %colors, %dl, %files, %rows, %system_files, %use ); my ( %alerts, %client, %colors, %dl, %files, %rows, %system_files, %use );
@ -75,8 +63,6 @@ my (@dm_boot_disk,@dm_boot_optical,@glabel,@gpart,@labels,@lsblk,@partitions,
@raid,@sysctl_disks,@uuids); @raid,@sysctl_disks,@uuids);
my @test = (0,0,0,0,0); my @test = (0,0,0,0,0);
#my $opt_parser = Getopt::Long::Parser->new;
## Booleans ## Booleans
my ($b_arm,$b_console_irc,$b_debug_gz,$b_display,$b_dmesg_boot_check,$b_dmi, my ($b_arm,$b_console_irc,$b_debug_gz,$b_display,$b_dmesg_boot_check,$b_dmi,
$b_dmidecode_force,$b_force_display,$b_gpudata,$b_irc,$b_log,$b_log_colors, $b_dmidecode_force,$b_force_display,$b_gpudata,$b_irc,$b_log,$b_log_colors,
@ -1241,6 +1227,7 @@ sub create_debug_directory {
my ($arm_string,$bsd_string,$root_string) = ('','',''); my ($arm_string,$bsd_string,$root_string) = ('','','');
# note: Time::Piece was introduced in perl 5.9.5 # note: Time::Piece was introduced in perl 5.9.5
my ($sec,$min,$hour,$mday,$mon,$year) = localtime; my ($sec,$min,$hour,$mday,$mon,$year) = localtime;
my $version = substr($self_version,0,3);
$year = $year+1900; $year = $year+1900;
$mon += 1; $mon += 1;
if (length($sec) == 1) {$sec = "0$sec";} if (length($sec) == 1) {$sec = "0$sec";}
@ -1256,7 +1243,7 @@ sub create_debug_directory {
} }
$bsd_string = "-$bsd_type-$os" if $bsd_type; $bsd_string = "-$bsd_type-$os" if $bsd_type;
$arm_string = '-ARM' if $b_arm; $arm_string = '-ARM' if $b_arm;
$debug_dir = "$self_name$arm_string$bsd_string-$host-$today$root_string"; $debug_dir = "$self_name$arm_string$bsd_string-$host-$today$root_string-$version";
$debug_gz = "$debug_dir.tar.gz"; $debug_gz = "$debug_dir.tar.gz";
$data_dir = "$user_data_dir/$debug_dir"; $data_dir = "$user_data_dir/$debug_dir";
if ( -d $data_dir ){ if ( -d $data_dir ){
@ -1455,7 +1442,8 @@ sub display_data {
['nvidia-smi','-q'], ['nvidia-smi','-q'],
['nvidia-smi','-q -x'], ['nvidia-smi','-q -x'],
['plasmashell','--version'], ['plasmashell','--version'],
['weston-info',''], ['weston-info',''],
['wmctrl','-m'],
['weston','--version'], ['weston','--version'],
['xdpyinfo',''], ['xdpyinfo',''],
['Xorg','-version'], ['Xorg','-version'],
@ -2261,11 +2249,11 @@ sub check_items {
} }
elsif ($type eq 'recommended display information programs'){ elsif ($type eq 'recommended display information programs'){
if ($bsd_type){ if ($bsd_type){
@data = qw(glxinfo xdpyinfo xprop xrandr); @data = qw(glxinfo wmctrl xdpyinfo xprop xrandr);
$info_os = 'info-bsd'; $info_os = 'info-bsd';
} }
else { else {
@data = qw(glxinfo xdpyinfo xprop xrandr); @data = qw(glxinfo wmctrl xdpyinfo xprop xrandr);
} }
$b_program = 1; $b_program = 1;
$item = 'Program'; $item = 'Program';
@ -2647,6 +2635,13 @@ sub item_data {
'pacman' => 'mesa-demos', 'pacman' => 'mesa-demos',
'rpm' => 'glx-utils (openSUSE 12.3 and later Mesa-demo-x)', 'rpm' => 'glx-utils (openSUSE 12.3 and later Mesa-demo-x)',
}), }),
'wmctrl' => ({
'info' => '-S active window manager (not all wm)',
'info-bsd' => '-S active window managerr (not all wm)',
'apt' => 'wmctrl',
'pacman' => 'wmctrl',
'rpm' => 'wmctrl',
}),
'xdpyinfo' => ({ 'xdpyinfo' => ({
'info' => '-G multi screen resolution', 'info' => '-G multi screen resolution',
'info-bsd' => '-G multi screen resolution', 'info-bsd' => '-G multi screen resolution',
@ -3900,8 +3895,8 @@ sub show_options {
['1', '-F', '--full', "Full output. Includes all Upper Case line letters ['1', '-F', '--full', "Full output. Includes all Upper Case line letters
except -W, plus -s and -n. Does not show extra verbose options such except -W, plus -s and -n. Does not show extra verbose options such
as -d -f -i -l -m -o -p -r -t -u -x, unless specified." ], as -d -f -i -l -m -o -p -r -t -u -x, unless specified." ],
['1', '-G', '--graphics', "Graphics info (card(s), driver, display server ['1', '-G', '--graphics', "Graphics info (card(s), driver, display protocol
type/version, resolution, renderer, OpenGL version)." ], (if available), display server, resolution, renderer, OpenGL version)." ],
['1', '-i', '--ip', "WAN IP address and local interfaces (requires ifconfig ['1', '-i', '--ip', "WAN IP address and local interfaces (requires ifconfig
or ip network tool). Triggers -n. Not shown with -F for user security reasons. or ip network tool). Triggers -n. Not shown with -F for user security reasons.
You shouldn't paste your local/WAN IP." ], You shouldn't paste your local/WAN IP." ],
@ -4059,7 +4054,7 @@ sub show_options {
['2', '-R', '', "zfs-raid: portion allocated (used) by RAID devices/arrays. ['2', '-R', '', "zfs-raid: portion allocated (used) by RAID devices/arrays.
md-raid: system md-raid support types (kernel support, read ahead, RAID events)." ], md-raid: system md-raid support types (kernel support, read ahead, RAID events)." ],
['2', '-S', '', "Panel/shell info in desktop output, if in X (like gnome-shell, ['2', '-S', '', "Panel/shell info in desktop output, if in X (like gnome-shell,
cinnamon, mate-panel); if available, dm version number." ] cinnamon, mate-panel); (if available) dm version number, active window manager." ]
); );
push @data, @rows; push @data, @rows;
if ( $b_weather ){ if ( $b_weather ){
@ -7506,6 +7501,7 @@ sub partition_table {
} }
if ($return[0] ne 'na'){ if ($return[0] ne 'na'){
$cmd = "$return[0]$id 2>/dev/null"; $cmd = "$return[0]$id 2>/dev/null";
main::log_data('cmd',$cmd) if $b_log;
@data = main::grabber($cmd); @data = main::grabber($cmd);
$return[1] = main::awk(\@data,'^(UDISKS_PARTITION_TABLE_SCHEME|ID_PART_TABLE_TYPE)',2,'='); $return[1] = main::awk(\@data,'^(UDISKS_PARTITION_TABLE_SCHEME|ID_PART_TABLE_TYPE)',2,'=');
$return[1] = 'mbr' if $return[1] eq 'dos'; $return[1] = 'mbr' if $return[1] eq 'dos';
@ -7668,7 +7664,7 @@ sub get {
@rows = (@rows,@data); @rows = (@rows,@data);
} }
} }
@data = display_server(); @data = display_data();
@rows = (@rows,@data); @rows = (@rows,@data);
@data = gl_data(); @data = gl_data();
@rows = (@rows,@data); @rows = (@rows,@data);
@ -7737,19 +7733,27 @@ sub card_data {
eval $end if $b_log; eval $end if $b_log;
return @rows; return @rows;
} }
sub display_server(){ sub display_data(){
eval $start if $b_log; eval $start if $b_log;
my (%graphics,@row); my (%graphics,@row);
my @xdpyinfo; my @xdpyinfo;
my $num = 0; my $num = 0;
# note: this may not always be set, it won't be out of X, for example my ($protocol,$server) = ('','');
my $server = $ENV{'XDG_SESSION_TYPE'}; # note: these may not always be set, they won't be out of X, for example
$protocol = $ENV{'XDG_SESSION_TYPE'} if $ENV{'XDG_SESSION_TYPE'};
$server = $ENV{'WAYLAND_DISPLAY'} if (!$server && $ENV{'WAYLAND_DISPLAY'}); $protocol = $ENV{'WAYLAND_DISPLAY'} if (!$protocol && $ENV{'WAYLAND_DISPLAY'});
# need to confirm that there's a point to this test, I believe no, fails out of x
# if (!$protocol && $b_display && !$b_force_display && $ENV{'XDG_SESSION_ID'}){
# if (my $program = main::check_program('loginctl')){
# my $temp = (main::grabber("$program show-session $ENV{'XDG_SESSION_ID'} -p Type --no-pager 2>/dev/null"))[0];
# $temp =~ s/Type=// if $temp;
# $protocol = $temp;
# }
# }
if ($extra > 1){ if ($extra > 1){
# initial tests, if wayland, it is certainly a compositor # initial tests, if wayland, it is certainly a compositor
$server = lc($server) if $server; $protocol = lc($protocol) if $protocol;
$graphics{'compositor'} = display_compositor($server); $graphics{'compositor'} = display_compositor($protocol);
} }
if ( $b_display){ if ( $b_display){
# X vendor and version detection. # X vendor and version detection.
@ -7846,12 +7850,7 @@ sub display_server(){
my $server_string = ''; my $server_string = '';
if ($graphics{'vendor'}){ if ($graphics{'vendor'}){
my $version = ($graphics{'version'}) ? " $graphics{'version'}" : ''; my $version = ($graphics{'version'}) ? " $graphics{'version'}" : '';
if ($server){ $server_string = "$graphics{'vendor'}$version";
$server_string = "$server ($graphics{'vendor'}$version)";
}
else {
$server_string = "$graphics{'vendor'}$version";
}
} }
elsif ($graphics{'version'}) { elsif ($graphics{'version'}) {
$server_string = "X.org $graphics{'version'}"; $server_string = "X.org $graphics{'version'}";
@ -7866,10 +7865,11 @@ sub display_server(){
} }
} }
my @drivers = x_drivers(); my @drivers = x_drivers();
if (!$server_string && !$graphics{'vendor'} && !@drivers){ if (!$protocol && !$server_string && !$graphics{'vendor'} && !@drivers){
$server_string = main::row_defaults('display-server'); $server_string = main::row_defaults('display-server');
@row = ({ @row = ({
main::key($num++,'Display Server') => $server_string, main::key($num++,'Display') => '',
main::key($num++,'server') => $server_string,
}); });
} }
else { else {
@ -7879,7 +7879,8 @@ sub display_server(){
# those come from lscpi kernel drivers so there should be no xorg/wayland issues. # those come from lscpi kernel drivers so there should be no xorg/wayland issues.
$driver = ($drivers[0]) ? $drivers[0]: $driver; $driver = ($drivers[0]) ? $drivers[0]: $driver;
@row = ({ @row = ({
main::key($num++,'Display Server') => $server_string, main::key($num++,'Display') => $protocol,
main::key($num++,'server') => $server_string,
main::key($num++,'driver') => $driver, main::key($num++,'driver') => $driver,
}); });
if ($drivers[2]){ if ($drivers[2]){
@ -8131,10 +8132,10 @@ sub x_version {
eval $end if $b_log; eval $end if $b_log;
return $version; return $version;
} }
# $1 - server: wayland|x11 # $1 - protocol: wayland|x11
sub display_compositor { sub display_compositor {
eval $start if $b_log; eval $start if $b_log;
my ($server) = @_; my ($protocol) = @_;
my ($compositor) = (''); my ($compositor) = ('');
# NOTE: chains of greps of ps data are VERY expensive, so check for program presence # NOTE: chains of greps of ps data are VERY expensive, so check for program presence
if (main::check_program('mutter') && (grep {/mutter/} @ps_cmd ) ) { if (main::check_program('mutter') && (grep {/mutter/} @ps_cmd ) ) {
@ -8627,6 +8628,7 @@ sub get_device_sys {
my ($chasis_id) = @_; my ($chasis_id) = @_;
my ($device) = (''); my ($device) = ('');
my @chassis; my @chassis;
# https://www.dmtf.org/sites/default/files/standards/documents/DSP0134_2.8.0.pdf
$chassis[2] = 'unknown'; $chassis[2] = 'unknown';
# note: 13 is all-in-one which we take as a mac type system # note: 13 is all-in-one which we take as a mac type system
$chassis[3] = 'desktop'; $chassis[3] = 'desktop';
@ -13612,6 +13614,7 @@ sub get_compiler_version_linux {
# 2 - toolkit # 2 - toolkit
# 3 - toolkit version # 3 - toolkit version
# 4 - info extra desktop data # 4 - info extra desktop data
# 5 - wm
{ {
package DesktopEnvironment; package DesktopEnvironment;
my ($b_xprop,$kde_session_version,$xdg_desktop,@desktop,@data,@xprop); my ($b_xprop,$kde_session_version,$xdg_desktop,@desktop,@data,@xprop);
@ -13636,6 +13639,9 @@ sub get {
if ($extra > 2 && @desktop){ if ($extra > 2 && @desktop){
set_info_data(); set_info_data();
} }
if ($b_display && !$b_force_display && $extra > 2){
get_wm();
}
main::log_data('dump','@desktop', \@desktop) if $b_log; main::log_data('dump','@desktop', \@desktop) if $b_log;
# ($b_xprop,$kde_session_version,$xdg_desktop,@data,@xprop) = undef; # ($b_xprop,$kde_session_version,$xdg_desktop,@data,@xprop) = undef;
return @desktop; return @desktop;
@ -13986,6 +13992,16 @@ sub get_ps_de_data {
eval $end if $b_log; eval $end if $b_log;
} }
sub get_wm {
eval $start if $b_log;
if ( my $program = main::check_program('wmctrl') ){
my $cmd = "$program -m 2>/dev/null";
my @data = main::grabber($cmd,'','strip');
$desktop[5] = main::awk(\@data,'^Name',2,'\s*:\s*');
}
eval $end if $b_log;
}
sub set_gtk_data { sub set_gtk_data {
eval $start if $b_log; eval $start if $b_log;
my ($version,$program,@data); my ($version,$program,@data);
@ -16170,7 +16186,7 @@ sub generate_system_data {
my $num = 0; my $num = 0;
my (%row,$ref,$index,$val1); my (%row,$ref,$index,$val1);
my $data_name = main::key($prefix++,'System'); my $data_name = main::key($prefix++,'System');
my ($desktop,$desktop_info,$desktop_key) = ('','','Desktop'); my ($desktop,$desktop_info,$desktop_key,$toolkit,$wm) = ('','','Desktop','','');
my (@desktop_data,$desktop_version); my (@desktop_data,$desktop_version);
my %data = ( my %data = (
@ -16204,12 +16220,16 @@ sub generate_system_data {
$desktop_version = $desktop_data[1] if $desktop_data[1]; $desktop_version = $desktop_data[1] if $desktop_data[1];
$desktop .= ' ' . $desktop_version if $desktop_version; $desktop .= ' ' . $desktop_version if $desktop_version;
if ($extra > 0 && $desktop_data[3]){ if ($extra > 0 && $desktop_data[3]){
$desktop .= ' (' . $desktop_data[2]; #$desktop .= ' (' . $desktop_data[2];
$desktop .= ( $desktop_data[3] ) ? ' ' . $desktop_data[3] . ')' : ')'; #$desktop .= ( $desktop_data[3] ) ? ' ' . $desktop_data[3] . ')' : ')';
$toolkit = "$desktop_data[2] $desktop_data[3]";
} }
if ($extra > 2 && $desktop_data[4]){ if ($extra > 2 && $desktop_data[4]){
$desktop_info = $desktop_data[4]; $desktop_info = $desktop_data[4];
} }
if ($desktop_data[5]){
$wm = $desktop_data[5];
}
} }
if (!$b_display || ( ! $desktop && $b_root)) { if (!$b_display || ( ! $desktop && $b_root)) {
my $tty = get_tty_number(); my $tty = get_tty_number();
@ -16225,10 +16245,16 @@ sub generate_system_data {
} }
$desktop ||= 'N/A'; $desktop ||= 'N/A';
$data{$data_name}[$index]{main::key($num++,$desktop_key)} = $desktop; $data{$data_name}[$index]{main::key($num++,$desktop_key)} = $desktop;
if ($toolkit){
$data{$data_name}[$index]{main::key($num++,'tk')} = $toolkit;
}
if ($extra > 2){ if ($extra > 2){
if ($desktop_info){ if ($desktop_info){
$data{$data_name}[$index]{main::key($num++,'info')} = $desktop_info; $data{$data_name}[$index]{main::key($num++,'info')} = $desktop_info;
} }
if ($wm){
$data{$data_name}[$index]{main::key($num++,'wm')} = $wm;
}
} }
if ($extra > 1){ if ($extra > 1){
my $dms = get_display_manager(); my $dms = get_display_manager();

37
inxi.1
View file

@ -1,4 +1,4 @@
.TH INXI 1 "2018\-04\-09" inxi "inxi manual" .TH INXI 1 "2018\-04\-12" inxi "inxi manual"
.SH NAME .SH NAME
inxi \- Command line system information script for console and IRC inxi \- Command line system information script for console and IRC
.SH SYNOPSIS .SH SYNOPSIS
@ -162,12 +162,16 @@ plus \fB\-s\fR and \fB\-n\fR. Does not show extra verbose options such as
the command, e.g.: \fBinxi \-Frmxx\fR the command, e.g.: \fBinxi \-Frmxx\fR
.TP .TP
.B \-G\fR,\fB \-\-graphics\fR .B \-G\fR,\fB \-\-graphics\fR
Show Graphic card(s) information, including details of card, driver, Show Graphic card(s) information, including details of card and card driver,
Display Server (vendor and version number), e.g.: display protocol (if available), display server (vendor and version number), e.g.:
\fBDisplay Server: x11 (Xorg 1.15.1)\fR \fBDisplay: x11 server: Xorg 1.15.1\fR
as well as screen resolution(s), OpenGL renderer, OpenGL core profile version/OpenGL If protocol is not detected, shows:
\fBDisplay: server: Xorg 1.15.1\fR
Also shows screen resolution(s), OpenGL renderer, OpenGL core profile version/OpenGL
version. version.
If detected (currently only available if on a desktop), it will attempt to show the If detected (currently only available if on a desktop), it will attempt to show the
@ -318,7 +322,7 @@ if present.
.B \-\-slots\fR .B \-\-slots\fR
Show PCI slots with type, speed, and status information. Show PCI slots with type, speed, and status information.
.TP .TP
.B \-S\fR,\fB \-\-system\fRq .B \-S\fR,\fB \-\-system\fR
Show System information: host name, kernel, desktop environment (if in X), Show System information: host name, kernel, desktop environment (if in X),
distro. With \fB\-xx\fR show dm \- or startx \- (only shows if present and distro. With \fB\-xx\fR show dm \- or startx \- (only shows if present and
running if out of X), and if in X, with \fB\-xxx\fR show more desktop info, running if out of X), and if in X, with \fB\-xxx\fR show more desktop info,
@ -553,11 +557,14 @@ generate one.
\- Adds PCI Bus ID/USB ID number of each Network card. \- Adds PCI Bus ID/USB ID number of each Network card.
.TP .TP
.B \-x \-R\fR .B \-x \-R\fR
\- md\-raid: Adds second RAID Info line with extra data: blocks; chunk size; \- md\-raid: Adds second RAID Info line with extra data: blocks, chunk size,
bitmap (if present). Resync line, shows blocks synced/total blocks. bitmap (if present). Resync line, shows blocks synced/total blocks.
.TP .TP
.B \-x \-S\fR .B \-x \-S\fR
\- Adds desktop toolkit, if available (GNOME/Xfce/KDE only); Kernel gcc version. \- Adds desktop toolkit (\fBtk\fR), if available (GNOME/Xfce/KDE only).
.TP
.B \-x \-S\fR
\- Kernel gcc version.
.TP .TP
.B \-x \-t\fR .B \-x \-t\fR
\- Adds memory use output to CPU (\fB\-xt c\fR), and CPU use to memory \- Adds memory use output to CPU (\fB\-xt c\fR), and CPU use to memory
@ -634,9 +641,9 @@ ROM size if using \fBdmidecode\fR.
shows progress bar. shows progress bar.
.TP .TP
.B \-xx \-S\fR .B \-xx \-S\fR
\- Adds, if run in X, display manager type (if present). \- Adds, if run in X, display manager (\fBdm\fR) type, if present.
If none, shows N/A. Supports most known display managers, including xdm, gdm, kdm, If none, shows N/A. Supports most known display managers, including gdm, gdm3,
slim, lightdm, sddm, and mdm. idm, kdm, lightdm, lxdm, mdm, nodm, sddm, slim, tint, wdm, and xdm.
.TP .TP
.B \-xx \-\-slots\fR .B \-xx \-\-slots\fR
\- Adds slot length. \- Adds slot length.
@ -689,10 +696,16 @@ data available.
\- zfs\-raid: Adds portion allocated (used) by RAID array/device. \- zfs\-raid: Adds portion allocated (used) by RAID array/device.
.TP .TP
.B \-xxx \-S\fR .B \-xxx \-S\fR
\- Adds, if run in X, shell/panel type info (if present). \- Adds, if run in X, shell/panel type (\fBinfo\fR), if present.
If none, shows nothing. Supports some current desktop extras like gnome\-panel, If none, shows nothing. Supports some current desktop extras like gnome\-panel,
lxde\-panel, and others. Added mainly for Mint support. lxde\-panel, and others. Added mainly for Mint support.
.TP .TP
.B \-xxx \-S\fR
\- Adds, if run in X, window manager type (\fBwm\fR), if available.
Not all window managers are supported. Some desktops support using more than one
window manager, so this can be useful to see what windom manager is actually running.
If none found, shows nothing.
.TP
.B \-xxx \-w\fR,\fB \-W\fR .B \-xxx \-w\fR,\fB \-W\fR
\- Adds location (city state country), altitude, weather observation time. \- Adds location (city state country), altitude, weather observation time.

View file

@ -1,3 +1,42 @@
=====================================================================================
Version: 3.0.01
Patch Version: 00
Script Date: 2018-04-12
-----------------------------------
Changes:
-----------------------------------
New version, new man. Fine tunings.
New features:
1. for a very few systems that have wmctrl installed, will shows -xxx wm if present
Enhancements:
1. made xorg display server and protocols show more consistently with other layout:
Display: x11 server: X.org 1.9.12 drivers: loaded: ...
if no display protocol found:
Display: server: X.org 1.9.12 drivers: loaded: ...
This brings the -G in line with the other lines, of not putting different data types
inside of parentheses as much as possible. -I still has two of these, but so far it's
not clear how to otherwise show SSH or su/sudo/login in their respective spaces.
Debugger data collector also has something I should have added ages ago, gz filename
now includes the basic 2 digit inxi version number, like 3.0 at end, so I can readily
determine the debugger inxi version, and thus avoid having to root through lots of
versions to find new stuff.
These are all largely cosmetic improvements, or debugger adjustments, except for -Sxxx
now offering wm: if present.
Also changed Desktop: name... (toolkit data) to: Desktop: name... tk: toolkit data
to be more consistent, while not adding great length to the output.
These two changes should also help export to json/xml since that puts unique key/values
back into key value pairs, not merging two together.
-----------------------------------
-- Harald Hope - Thu, 12 Apr 2018 13:17:26 -0700
===================================================================================== =====================================================================================
Version: 3.0.00 Version: 3.0.00
Patch Version: 00 Patch Version: 00