Skip to content

Commit

Permalink
Fix font size and remove Bold. Add Colors and Fix some tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Jan 30, 2014
1 parent 0369e07 commit b0f914d
Show file tree
Hide file tree
Showing 5 changed files with 419 additions and 336 deletions.
Binary file modified src/i-nex/.icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/i-nex/.project
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Component=gb.image
Component=gb.qt4
Component=gb.form
Component=gb.desktop
Description="I-Nex is an application that gathers information for hardware components available on your system and displays it using an user interface similar to the popular Windows tool CPU-Z.\n\nI-Nex can display information for the following components: CPU, GPU, Motherboard, Sound, Hard disks, RAM, Network and USB as well as some system info like the hostname, Linux distribution and version, Xorg, GCC, GLX versions and Linux Kernel info.\n\n\nThe difference between I-Nex and the other hardware information GUI tools available for Linux is that the information is better organized and is displayed faster (than lshw-gtk for instance). Also, the hardware information is presented in a way that’s easier to understand than other such tools.\n\nBesides being able to display hardware information, I-Nex can also generate an advanced report for which you can select what to include and optionally send the report to a service such as Pastebin (and others). It also features an option to take a screenshot of the I-Nex window directly from the application."
Authors="eloaders"
Environment="LANG=C\nLC_ALL=C\nLIBOVERLAY_SCROLLBAR=0\nAPPMENU_DISPLAY_BOTH=1\nSHELL=/bin/bash"
TabSize=1
Expand Down
6 changes: 3 additions & 3 deletions src/i-nex/.settings
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ SearchComment=False
SearchString=True

[OpenFile]
Active=1
File[1]=".src/Finfosys.form"
File[2]=".src/Global.class:15.70"
Active=3
File[3]=".src/About.form"
File[4]=".src/About.class:17.16"
File[5]=".src/battery.module:15.70"
File[6]=".src/Disk_Drives.module:15.70"
File[6]=".src/Disk_Drives.module:141.54"
File[7]=".src/ScreenShot.form"
File[8]=".src/ScreenShot.class:15.70"
File[9]=".src/ScreenShotM.module:15.70"
Expand All @@ -49,7 +49,7 @@ File[21]=".src/net.module:15.70"
File[22]="Data/report-ng.sh:5.3"
File[23]=".src/Distribution_Detect.module:15.70"
File[24]=".src/FFlags.module:15.70"
File[25]=".src/Finfosys.class:303.19"
File[25]=".src/Finfosys.class:321.10"
File[26]=".src/FDF.form"
File[27]=".src/FDF.class:15.70"
File[28]=".src/FNET_R_T.form"
Expand Down
24 changes: 12 additions & 12 deletions src/i-nex/.src/Finfosys.class
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Public Sub Form_Open()
.Height = 21
.Border = Border.Raised
.Padding = 3
.Font.Bold = True
.Font.Size = 8
.Text = MTRR[i - 1]
End With
Next
Expand Down Expand Up @@ -319,7 +319,7 @@ Public Sub kernel()
Shell "ls /boot/vmlinuz* | cut -d '/' -f 3 | wc -l" Wait To found_kernels
Shell "cat /proc/cmdline" Wait To Kernel_command_line

Frame22.Text = "Installed Kernels: " & found_kernels
Label228.Text = "Installed Kernels: " & found_kernels
Try TextLabel7.Text = "System name: " & UNAME["System_name"]
Try TextLabel16.Text = "Nodename: " & UNAME["Nodename"]
Try TextLabel17.Text = "Release: " & UNAME["Release"]
Expand Down Expand Up @@ -747,19 +747,19 @@ Public Sub refreshing()
Label58.Text = "Read ahead kb: " & Disk_Drives.read_ahead_kb & ""
Label59.Text = "Scheduler: " & Disk_Drives.scheduler & ""

Label126.Text = "logical_block_size: " & Disk_Drives.logical_block_size & "" ' logical_block_size
Label127.Text = "iostats: " & Disk_Drives.iostats & "" ' iostats
Label128.Text = "minimum_io_size: " & Disk_Drives.minimum_io_size & "" ' minimum_io_size
Label129.Text = "nomerges: " & Disk_Drives.nomerges & "" ' nomerges
Label130.Text = "nr_requests: " & Disk_Drives.nr_requests & "" ' nr_requests
Label131.Text = "optimal_io_size: " & Disk_Drives.optimal_io_size & "" ' optimal_io_size
Label132.Text = "physical_block_size: " & Disk_Drives.physical_block_size & "" ' physical_block_size
Label133.Text = "rotational: " & Disk_Drives.rotational & "" ' rotational
Label134.Text = "rq_affinity: " & Disk_Drives.rq_affinity & "" ' rq_affinity
Label126.Text = "Logical block size: " & Disk_Drives.logical_block_size & "" ' logical_block_size
Label127.Text = "IO stats: " & Disk_Drives.iostats & "" ' iostats
Label128.Text = "Minimum IO size: " & Disk_Drives.minimum_io_size & "" ' minimum_io_size
Label129.Text = "Nomerges: " & Disk_Drives.nomerges & "" ' nomerges
Label130.Text = "Nr requests: " & Disk_Drives.nr_requests & "" ' nr_requests
Label131.Text = "Optimal IO size: " & Disk_Drives.optimal_io_size & "" ' optimal_io_size
Label132.Text = "Physical block size: " & Disk_Drives.physical_block_size & "" ' physical_block_size
Label133.Text = "Rotational: " & Disk_Drives.rotational & "" ' rotational
Label134.Text = "Rq affinity: " & Disk_Drives.rq_affinity & "" ' rq_affinity

Label123.Text = "BDI max_ratio: " & Disk_Drives.max_ratio & ""
Label124.Text = "BDI min_ratio: " & Disk_Drives.min_ratio & ""
Label125.Text = "BDI stable_pages_required: " & Disk_Drives.stable_pages_required & ""
Label125.Text = "BDI stable pages required: " & Disk_Drives.stable_pages_required & ""

If Disk_Drives.removable Like "0" Then
Label45.Text = "Removable: No"
Expand Down

0 comments on commit b0f914d

Please sign in to comment.