Merge pull request #72 from naturallaw777/copilot/fix-disko-nix-partition-syntax-again
Fix disko partition syntax and remove broken Plymouth Spinner
This commit is contained in:
@@ -12,8 +12,7 @@
|
||||
ESP = {
|
||||
priority = 1;
|
||||
name = "ESP";
|
||||
start = "1M";
|
||||
end = "512M";
|
||||
size = "512M";
|
||||
type = "EF00";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
@@ -24,8 +23,7 @@
|
||||
};
|
||||
root = {
|
||||
name = "root";
|
||||
start = "512M";
|
||||
end = "100%";
|
||||
size = "100%";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "ext4";
|
||||
@@ -45,8 +43,7 @@
|
||||
partitions = {
|
||||
primary = {
|
||||
name = "primary";
|
||||
start = "1M";
|
||||
end = "100%";
|
||||
size = "100%";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "ext4";
|
||||
|
||||
@@ -34,11 +34,6 @@ logo = Image("logo.png");
|
||||
logo_sprite = Sprite(logo);
|
||||
logo_sprite.SetX((Window.GetWidth() - logo.GetWidth()) / 2);
|
||||
logo_sprite.SetY((Window.GetHeight() - logo.GetHeight()) / 2);
|
||||
|
||||
spinner = Sprite();
|
||||
spinner.SetImage(Spinner());
|
||||
spinner.SetX((Window.GetWidth() - spinner.GetImage().GetWidth()) / 2);
|
||||
spinner.SetY((Window.GetHeight() + logo.GetHeight()) / 2 + 20);
|
||||
EOF
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user