mirror of
https://github.com/smxi/inxi.git
synced 2025-01-19 17:07:49 +00:00
and some more variable ordering
This commit is contained in:
parent
d61404ff3f
commit
f02f760794
18
inxi
18
inxi
|
@ -180,6 +180,8 @@ A_X_DATA=''
|
||||||
B_ALLOW_UPDATE='true'
|
B_ALLOW_UPDATE='true'
|
||||||
# triggers full display of cpu flags
|
# triggers full display of cpu flags
|
||||||
B_CPU_FLAGS_FULL='false'
|
B_CPU_FLAGS_FULL='false'
|
||||||
|
# test for dbus irc client
|
||||||
|
B_DBUS_CLIENT='false'
|
||||||
# Debug flood override: make 'true' to allow long debug output
|
# Debug flood override: make 'true' to allow long debug output
|
||||||
B_DEBUG_FLOOD='false'
|
B_DEBUG_FLOOD='false'
|
||||||
# show extra output data
|
# show extra output data
|
||||||
|
@ -225,33 +227,31 @@ B_TESTING_2='false'
|
||||||
B_USE_LOGGING='false'
|
B_USE_LOGGING='false'
|
||||||
# Test for X running
|
# Test for X running
|
||||||
B_X_RUNNING='false'
|
B_X_RUNNING='false'
|
||||||
# test for dbus irc client
|
|
||||||
B_DBUS_CLIENT='false'
|
|
||||||
|
|
||||||
### Directory/file exist flags; test as [[ $(boolean) ]] not [[ $boolean ]]
|
### Directory/file exist flags; test as [[ $(boolean) ]] not [[ $boolean ]]
|
||||||
B_PROC_DIR='false'
|
|
||||||
B_CPUINFO_FILE='false'
|
|
||||||
B_MEMINFO_FILE='false'
|
|
||||||
B_ASOUND_DEVICE_FILE='false'
|
B_ASOUND_DEVICE_FILE='false'
|
||||||
B_ASOUND_VERSION_FILE='false'
|
B_ASOUND_VERSION_FILE='false'
|
||||||
B_BASH_ARRAY='false'
|
B_BASH_ARRAY='false'
|
||||||
|
B_CPUINFO_FILE='false'
|
||||||
B_IFCONFIG='false'
|
B_IFCONFIG='false'
|
||||||
B_LSB_FILE='false'
|
B_LSB_FILE='false'
|
||||||
B_SCSI_FILE='false'
|
B_MEMINFO_FILE='false'
|
||||||
B_MODULES_FILE='false' #
|
B_MODULES_FILE='false' #
|
||||||
B_MOUNTS_FILE='false'
|
B_MOUNTS_FILE='false'
|
||||||
B_PARTITIONS_FILE='false' #
|
B_PARTITIONS_FILE='false' #
|
||||||
|
B_PROC_DIR='false'
|
||||||
|
B_SCSI_FILE='false'
|
||||||
|
|
||||||
### File's used when present
|
### File's used when present
|
||||||
FILE_CPUINFO='/proc/cpuinfo'
|
|
||||||
FILE_MEMINFO='/proc/meminfo'
|
|
||||||
FILE_ASOUND_DEVICE='/proc/asound/cards'
|
FILE_ASOUND_DEVICE='/proc/asound/cards'
|
||||||
FILE_ASOUND_VERSION='/proc/asound/version'
|
FILE_ASOUND_VERSION='/proc/asound/version'
|
||||||
|
FILE_CPUINFO='/proc/cpuinfo'
|
||||||
FILE_LSB_RELEASE='/etc/lsb-release'
|
FILE_LSB_RELEASE='/etc/lsb-release'
|
||||||
FILE_SCSI='/proc/scsi/scsi'
|
FILE_MEMINFO='/proc/meminfo'
|
||||||
FILE_MODULES='/proc/modules'
|
FILE_MODULES='/proc/modules'
|
||||||
FILE_MOUNTS='/proc/mounts'
|
FILE_MOUNTS='/proc/mounts'
|
||||||
FILE_PARTITIONS='/proc/partitions'
|
FILE_PARTITIONS='/proc/partitions'
|
||||||
|
FILE_SCSI='/proc/scsi/scsi'
|
||||||
|
|
||||||
### Variable initializations: constants
|
### Variable initializations: constants
|
||||||
DCOPOBJ="default"
|
DCOPOBJ="default"
|
||||||
|
|
Loading…
Reference in a new issue