mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-18 05:21:47 +03:00
14 lines
252 B
Ruby
14 lines
252 B
Ruby
module GUI
|
|
class DisksWindow < BaseLogWindow
|
|
COMMAND = "lsblk --list -o NAME,SIZE,TYPE,PARTLABEL"
|
|
|
|
def initialize()
|
|
super(explanation: "Output of #{COMMAND}")
|
|
end
|
|
|
|
def on_present()
|
|
set_text(`#{COMMAND}`)
|
|
end
|
|
end
|
|
end
|