mirror of
https://github.com/smxi/inxi.git
synced 2025-09-04 11:39:22 +00:00
Trying to fix a bug with xchat-gnome detection for client
This commit is contained in:
parent
722014366a
commit
4a4ee6a650
1 changed files with 5 additions and 1 deletions
6
inxi
6
inxi
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
########################################################################
|
########################################################################
|
||||||
#### Script Name: inxi
|
#### Script Name: inxi
|
||||||
#### version: 0.1.40
|
#### version: 0.1.41
|
||||||
#### Date: October 29 2008
|
#### Date: October 29 2008
|
||||||
########################################################################
|
########################################################################
|
||||||
#### inxi is a fork of infobash, the original bash sys info script by locsmif
|
#### inxi is a fork of infobash, the original bash sys info script by locsmif
|
||||||
|
@ -544,6 +544,10 @@ get_start_source()
|
||||||
fi
|
fi
|
||||||
IRC_CLIENT="Konversation"
|
IRC_CLIENT="Konversation"
|
||||||
;;
|
;;
|
||||||
|
*xchat-gnome)
|
||||||
|
RC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 { print $2 }' )"
|
||||||
|
IRC_CLIENT="X-Chat-Gnome"
|
||||||
|
;;
|
||||||
*xchat*)
|
*xchat*)
|
||||||
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 { print $2 }' )"
|
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 { print $2 }' )"
|
||||||
IRC_CLIENT="X-Chat"
|
IRC_CLIENT="X-Chat"
|
||||||
|
|
Loading…
Add table
Reference in a new issue