diff --git a/inxi b/inxi index c25ccf8..e1ed38d 100755 --- a/inxi +++ b/inxi @@ -2066,7 +2066,8 @@ is_this_qt4_konvi() if [[ ${konvi[2]} == 'konversation' ]];then konvi_qt4_ver=$( konversation -v | grep -i 'konversation' ) - konvi_qt4_client=$( echo "$konvi_qt4_ver" | gawk '{ print $2 }' ) + # note: we need to change this back to a single dot number, like 1.3, not 1.3.2 + konvi_qt4_client=$( echo "$konvi_qt4_ver" | gawk '{ print $2 }' | cut -d '.' -f 1,2 ) if [[ $konvi_qt4_client > 1.1 ]]; then b_is_qt4='true'