mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
Small bug fix, added separator character to Desktop item, that was left out.
This commit is contained in:
parent
e687ce5960
commit
f63cf11e2c
8
inxi
8
inxi
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
########################################################################
|
########################################################################
|
||||||
#### Script Name: inxi
|
#### Script Name: inxi
|
||||||
#### version: 1.7.27
|
#### version: 1.7.28
|
||||||
#### Date: November 21 2011
|
#### Date: January 7 2012
|
||||||
#### Patch Number: 00
|
#### Patch Number: 00
|
||||||
########################################################################
|
########################################################################
|
||||||
#### SPECIAL THANKS
|
#### SPECIAL THANKS
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
#### Gaim/Pidgin, Weechat, KVIrc and Kopete.
|
#### Gaim/Pidgin, Weechat, KVIrc and Kopete.
|
||||||
#### Original infobash author and copyright holder:
|
#### Original infobash author and copyright holder:
|
||||||
#### Copyright (C) 2005-2007 Michiel de Boer a.k.a. locsmif
|
#### Copyright (C) 2005-2007 Michiel de Boer a.k.a. locsmif
|
||||||
#### inxi version: Copyright (C) 2008-11 Scott Rogers & Harald Hope
|
#### inxi version: Copyright (C) 2008-12 Scott Rogers & Harald Hope
|
||||||
#### Further fixes (listed as known): Horst Tritremmel <hjt at sidux.com>
|
#### Further fixes (listed as known): Horst Tritremmel <hjt at sidux.com>
|
||||||
#### Steven Barrett (aka: damentz) - usb audio patch; swap percent used patch
|
#### Steven Barrett (aka: damentz) - usb audio patch; swap percent used patch
|
||||||
####
|
####
|
||||||
|
@ -7701,7 +7701,7 @@ print_system_data()
|
||||||
desktop_environment="tty$tty_session"
|
desktop_environment="tty$tty_session"
|
||||||
desktop_type='Console'
|
desktop_type='Console'
|
||||||
fi
|
fi
|
||||||
de_distro_string="${C1}$desktop_type${C2} $desktop_environment ${C1}Distro$SEP3${C2} $distro"
|
de_distro_string="${C1}$desktop_type$SEP3${C2} $desktop_environment ${C1}Distro$SEP3${C2} $distro"
|
||||||
if [[ $B_EXTRA_DATA == 'true' ]];then
|
if [[ $B_EXTRA_DATA == 'true' ]];then
|
||||||
gcc_string=$( get_gcc_kernel_version )
|
gcc_string=$( get_gcc_kernel_version )
|
||||||
if [[ -n $gcc_string ]];then
|
if [[ -n $gcc_string ]];then
|
||||||
|
|
Loading…
Reference in a new issue