mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-18 05:21:47 +03:00
26 lines
459 B
Ruby
26 lines
459 B
Ruby
# Adds a minimal set of files required for logging-in.
|
|
class Tasks::Splash < Task
|
|
attr_reader :image
|
|
|
|
def initialize(image)
|
|
add_dependency(:Target, :Graphics)
|
|
@image = image
|
|
end
|
|
|
|
def run()
|
|
begin
|
|
System.run($PROGRAM_NAME, "/applets/boot-splash.mrb", image)
|
|
# Don't fail the boot if the splash fails
|
|
rescue System::CommandError
|
|
end
|
|
end
|
|
|
|
def name()
|
|
"#{super}(#{image})"
|
|
end
|
|
|
|
def ux_priority()
|
|
-100
|
|
end
|
|
end
|