mirror of
https://github.com/smxi/inxi.git
synced 2025-01-19 00:47:47 +00:00
(Change Version - BIG BUG FIX!!)
Moved the get params back after setting konvi params
This commit is contained in:
parent
61f9f89744
commit
59c49120de
10
inxi
10
inxi
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
########################################################################
|
########################################################################
|
||||||
#### Script Name: inxi
|
#### Script Name: inxi
|
||||||
#### version: 0.8.8
|
#### version: 0.8.9
|
||||||
#### Date: December 14 2008
|
#### Date: December 14 2008
|
||||||
########################################################################
|
########################################################################
|
||||||
#### inxi is a fork of infobash 3.02, the original bash sys info script by locsmif
|
#### inxi is a fork of infobash 3.02, the original bash sys info script by locsmif
|
||||||
|
@ -2712,10 +2712,6 @@ set_calculated_variables
|
||||||
## this needs to run before the KONVI stuff is set below
|
## this needs to run before the KONVI stuff is set below
|
||||||
get_start_client
|
get_start_client
|
||||||
|
|
||||||
# "$@" passes every parameter separately quoted, "$*" passes all parameters as one quoted parameter.
|
|
||||||
# must be here to allow debugger and other flags to be set.
|
|
||||||
get_parameters "$@"
|
|
||||||
|
|
||||||
# Check for dependencies before running anything else except above functions
|
# Check for dependencies before running anything else except above functions
|
||||||
check_script_depends
|
check_script_depends
|
||||||
|
|
||||||
|
@ -2743,6 +2739,10 @@ fi
|
||||||
# print_screen_output "DCSERVER: $DCSERVER"
|
# print_screen_output "DCSERVER: $DCSERVER"
|
||||||
# print_screen_output "DCTARGET: $DCTARGET"
|
# print_screen_output "DCTARGET: $DCTARGET"
|
||||||
|
|
||||||
|
# "$@" passes every parameter separately quoted, "$*" passes all parameters as one quoted parameter.
|
||||||
|
# must be here to allow debugger and other flags to be set.
|
||||||
|
get_parameters "$@"
|
||||||
|
|
||||||
# If no colorscheme was set in the parameter handling routine, then set the default scheme
|
# If no colorscheme was set in the parameter handling routine, then set the default scheme
|
||||||
if [[ $COLOR_SCHEME_SET != 'true' ]];then
|
if [[ $COLOR_SCHEME_SET != 'true' ]];then
|
||||||
set_color_scheme "$DEFAULT_SCHEME"
|
set_color_scheme "$DEFAULT_SCHEME"
|
||||||
|
|
Loading…
Reference in a new issue