mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
Added support for hexchat, version update, but this is the only actual change.
This commit is contained in:
parent
f1dcb81d1d
commit
29c55b61d9
10
inxi
10
inxi
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
########################################################################
|
########################################################################
|
||||||
#### Script Name: inxi
|
#### Script Name: inxi
|
||||||
#### version: 1.8.13
|
#### version: 1.8.14
|
||||||
#### Date: July 1 2012
|
#### Date: July 30 2012
|
||||||
#### Patch Number: 00
|
#### Patch Number: 00
|
||||||
########################################################################
|
########################################################################
|
||||||
#### SPECIAL THANKS
|
#### SPECIAL THANKS
|
||||||
|
@ -2432,6 +2432,12 @@ get_start_client()
|
||||||
}' )"
|
}' )"
|
||||||
IRC_CLIENT="Gaim"
|
IRC_CLIENT="Gaim"
|
||||||
;;
|
;;
|
||||||
|
hexchat)
|
||||||
|
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 {
|
||||||
|
print $2
|
||||||
|
}' )"
|
||||||
|
IRC_CLIENT="HexChat"
|
||||||
|
;;
|
||||||
ircii)
|
ircii)
|
||||||
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 {
|
IRC_CLIENT_VERSION=" $( $irc_client_path -v | gawk 'NR == 1 {
|
||||||
print $3
|
print $3
|
||||||
|
|
Loading…
Reference in a new issue