mirror of
https://github.com/smxi/inxi.git
synced 2024-11-16 16:21:39 +00:00
no version change, new tarball. This is a purely code cosmetic change, XDG_CuRRENT_DESKTOP now shows X-Cinnamon
for cinnamon, so added an xdg test to skip the xrop -root section. Since either will catch it fine, there is no actual difference in output or outcome.
This commit is contained in:
parent
dedb8d5fa7
commit
caa106f85e
20
inxi
20
inxi
|
@ -4431,7 +4431,7 @@ get_desktop_environment()
|
|||
desktop_environment="KDE"
|
||||
elif [[ $XDG_CURRENT_DESKTOP == 'Unity' ]];then
|
||||
version=$( get_program_version 'unity' '^unity' '2' )
|
||||
# not certain cinn will always have version, so keep output right if not
|
||||
# not certain will always have version, so keep output right if not
|
||||
if [[ -n $version ]];then
|
||||
version="$version "
|
||||
fi
|
||||
|
@ -4458,6 +4458,20 @@ get_desktop_environment()
|
|||
fi
|
||||
fi
|
||||
desktop_environment='LXQt'
|
||||
# note, X-Cinnamon value strikes me as highly likely to change, so just search for the last part
|
||||
elif [[ -n $XDG_CURRENT_DESKTOP && -z ${XDG_CURRENT_DESKTOP/*innamon*/} ]];then
|
||||
version=$( get_program_version 'cinnamon' '^cinnamon' '2' )
|
||||
# not certain cinn will always have version, so keep output right if not
|
||||
if [[ -n $version ]];then
|
||||
version="$version "
|
||||
fi
|
||||
if [[ $B_EXTRA_DATA == 'true' ]];then
|
||||
toolkit=$( get_de_gtk_data )
|
||||
if [[ -n $toolkit ]];then
|
||||
version="$version(Gtk $toolkit)"
|
||||
fi
|
||||
fi
|
||||
desktop_environment="Cinnamon"
|
||||
fi
|
||||
# did we find it? If not, start the xprop tests
|
||||
if [[ -z $desktop_environment ]];then
|
||||
|
@ -4792,6 +4806,10 @@ get_de_gtk_data()
|
|||
fi
|
||||
elif type -p pacman &>/dev/null;then
|
||||
toolkit=$( pacman -Qi gtk3 2>/dev/null | gawk -F ':' '/^Version/ {print $2}' )
|
||||
# just guessing on gkt 4 package name
|
||||
if [[ -z $toolkit ]];then
|
||||
toolkit=$( pacman -Qi gtk4 2>/dev/null | gawk -F ':' '/^Version/ {print $2}' )
|
||||
fi
|
||||
if [[ -z $toolkit ]];then
|
||||
toolkit=$( pacman -Qi gtk2 2>/dev/null | gawk -F ':' '/^Version/ {print $2}' )
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue