mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
branch one tests
This commit is contained in:
parent
2775ac4aed
commit
381da5a508
13
inxi
13
inxi
|
@ -2413,15 +2413,10 @@ get_start_client()
|
||||||
eval $LOGFS
|
eval $LOGFS
|
||||||
local irc_client_path='' irc_client_path_lower='' non_native_konvi='' i=''
|
local irc_client_path='' irc_client_path_lower='' non_native_konvi='' i=''
|
||||||
local b_non_native_app='false' pppid='' app_working_name='' file_data=''
|
local b_non_native_app='false' pppid='' app_working_name='' file_data=''
|
||||||
local b_qt4_konvi='false' ps_l=''
|
local b_qt4_konvi='false' ps_parent=''
|
||||||
|
|
||||||
if [[ $B_RUNNING_IN_SHELL == 'true' ]];then
|
if [[ $B_RUNNING_IN_SHELL == 'true' ]];then
|
||||||
IRC_CLIENT='Shell'
|
IRC_CLIENT='Shell'
|
||||||
if [[ $B_EXTRA_DATA == 'true' ]];then
|
|
||||||
ps_l=$(ps -l | gawk '($5 == '"$PPID"') {print $NF}')
|
|
||||||
IRC_CLIENT="$IRC_CLIENT ($ps_l)"
|
|
||||||
fi
|
|
||||||
echo $PPID
|
|
||||||
unset IRC_CLIENT_VERSION
|
unset IRC_CLIENT_VERSION
|
||||||
elif [[ -n $PPID && -f /proc/$PPID/exe ]];then
|
elif [[ -n $PPID && -f /proc/$PPID/exe ]];then
|
||||||
if [[ $B_OVERRIDE_FILTER != 'true' ]];then
|
if [[ $B_OVERRIDE_FILTER != 'true' ]];then
|
||||||
|
@ -2722,9 +2717,9 @@ get_start_client()
|
||||||
else
|
else
|
||||||
# this should handle certain cases where it's ssh or some other startup tool
|
# this should handle certain cases where it's ssh or some other startup tool
|
||||||
# that falls through all the other tests
|
# that falls through all the other tests
|
||||||
ps_l=$(ps -p $PPID --no-headers | gawk '{print $NF}' )
|
ps_parent=$(ps -p $PPID --no-headers 2>/dev/null | gawk '{print $NF}' )
|
||||||
if [[ -n $ps_l ]];then
|
if [[ -n $ps_parent ]];then
|
||||||
IRC_CLIENT=$ps_l
|
IRC_CLIENT=$ps_parent
|
||||||
else
|
else
|
||||||
IRC_CLIENT="PPID=\"$PPID\" - empty?"
|
IRC_CLIENT="PPID=\"$PPID\" - empty?"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue