Class: Bootloader::SystemdBootWidget::BootloaderTab

Inherits:
CWM::Tab
  • Object
show all
Defined in:
src/lib/bootloader/systemdboot_widgets.rb

Overview

Represents bootloader specific options like its timeout, default section or password protection

Instance Method Summary collapse

Instance Method Details

#contentsObject



159
160
161
162
163
164
165
166
167
168
169
# File 'src/lib/bootloader/systemdboot_widgets.rb', line 159

def contents
  VBox(
    VSpacing(2),
    HBox(
      HSpacing(1),
      TimeoutWidget.new,
      HSpacing(1)
    ),
    VStretch()
  )
end

#labelObject



153
154
155
156
157
# File 'src/lib/bootloader/systemdboot_widgets.rb', line 153

def label
  textdomain "bootloader"

  _("Boot&loader Options")
end