From 8af379cd725b794e6b3a09372be043fc92dfabbd Mon Sep 17 00:00:00 2001 From: Basti Lathe Date: Wed, 24 May 2023 14:30:11 +0200 Subject: [PATCH] version update --- Cargo.lock | 2 +- Cargo.toml | 2 +- presets/xfce-goodies.toml | 2 +- src/main.rs | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e7ea7f2..774bed4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,7 +11,7 @@ dependencies = [ [[package]] name = "alma" -version = "0.10.0" +version = "0.11.0" dependencies = [ "anyhow", "byte-unit", diff --git a/Cargo.toml b/Cargo.toml index e81c669..6e9811b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "alma" -version = "0.10.0" +version = "0.11.0" authors = ["Roey Darwish Dror"] edition = "2018" diff --git a/presets/xfce-goodies.toml b/presets/xfce-goodies.toml index 4ece593..be3c3ee 100644 --- a/presets/xfce-goodies.toml +++ b/presets/xfce-goodies.toml @@ -1,2 +1,2 @@ -packages = ["xfce4-goodies", "xfce4-pulseaudio-plugin", "pipewire", "pavucontrol", "mugshot", "engrampa", "catfish", "firefox", "screenfetch", "thunderbird", "network-manager-applet"] +packages = ["xfce4-goodies", "xfce4-pulseaudio-plugin", "pipewire", "pipewire-jack", "pavucontrol", "mugshot", "engrampa", "catfish", "firefox", "screenfetch", "thunderbird", "network-manager-applet", "xdg-desktop-portal-gtk"] diff --git a/src/main.rs b/src/main.rs index dbdcf54..c3d568d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -162,7 +162,7 @@ fn create(command: args::CreateCommand) -> anyhow::Result<()> { info!("Partitioning the block device"); debug!("{:?}", disk_path); - let boot_size = command.boot_size.unwrap_or(600); + let boot_size = command.boot_size.unwrap_or(300); sgdisk .execute() @@ -433,7 +433,7 @@ fn create(command: args::CreateCommand) -> anyhow::Result<()> { arch_chroot .execute() .arg(mount_point.path()) - .args(&["mkinitcpio", "-p linux61 linux515"]) + .args(&["mkinitcpio", "-p", "linux61", "linux515"]) .run() .context("Failed to run mkinitcpio - do you have the base and linux packages installed?")?;