Prevented the possibility of drive printing that does not have any active mounts
This commit is contained in:
parent
858154b5c4
commit
7d5472b204
1 changed files with 2 additions and 1 deletions
|
|
@ -151,7 +151,8 @@ function conky_get_drives_and_volumes()
|
||||||
if dtype == "disk" then
|
if dtype == "disk" then
|
||||||
parent_drive = name
|
parent_drive = name
|
||||||
devices[parent_drive] = { mountpoints = {} }
|
devices[parent_drive] = { mountpoints = {} }
|
||||||
elseif dtype == "part" and parent_drive and mount and mount ~= "" then
|
elseif dtype == "part" and pkname == parent_drive and mount and mount ~= "" then
|
||||||
|
-- Only consider partitions with a non-empty mount point
|
||||||
table.insert(devices[parent_drive].mountpoints, mount)
|
table.insert(devices[parent_drive].mountpoints, mount)
|
||||||
elseif dtype == "dm" and pkname and mount and mount ~= "" then
|
elseif dtype == "dm" and pkname and mount and mount ~= "" then
|
||||||
-- Associate device-mapper (dm) devices with their parent physical disk
|
-- Associate device-mapper (dm) devices with their parent physical disk
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue