version update

This commit is contained in:
PurpleCow 2023-05-24 14:30:11 +02:00
parent de0440270b
commit 8af379cd72
4 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@ -11,7 +11,7 @@ dependencies = [
[[package]]
name = "alma"
version = "0.10.0"
version = "0.11.0"
dependencies = [
"anyhow",
"byte-unit",

View File

@ -1,6 +1,6 @@
[package]
name = "alma"
version = "0.10.0"
version = "0.11.0"
authors = ["Roey Darwish Dror"]
edition = "2018"

View File

@ -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"]

View File

@ -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?")?;