Skip to content

Commit

Permalink
update pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
UriHerrera committed Jul 18, 2024
1 parent f83bd65 commit ed7247c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
calamares-qml-settings-nitrux (1.7.4+new-dev) nitrux; urgency=medium

* Update branding.

-- Uri Herrera <[email protected]> Thu, 18 Jun 2024 16:07:00 -0500

calamares-qml-settings-nitrux (1.7.3+new-dev) nitrux; urgency=medium

* Remove grub parameter.
Expand Down
8 changes: 4 additions & 4 deletions etc/calamares/branding/nxos/branding.desc
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ welcomeExpandingLogo: true
strings:
productName: Nitrux OS
shortProductName: Nitrux
version: 3.5.1
shortVersion: 3.5.1
versionedName: Nitrux OS 3.5.1 build.300624.nm
shortVersionedName: Nitrux 3.5.1 build.300624.nm
version: 3.6.0
shortVersion: 3.6.0
versionedName: Nitrux OS 3.6.0 build.310724.xx
shortVersionedName: Nitrux 3.6.0 build.310724.xx
bootloaderEntryName: Nitrux
productUrl: https://nxos.org/
supportUrl: https://github.com/Nitrux/nitrux-bug-tracker/
Expand Down
2 changes: 1 addition & 1 deletion etc/skel/Desktop/org.nxos.installer.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Categories=Qt;System;
Comment[en_US]=Install Nitrux OS in this computer.
Comment=Install Nitrux OS in this computer.
Exec=start-calamares
Exec=sudo -E start-calamares
GenericName[en_US]=Installer
GenericName=Installer
Icon=live-installer
Expand Down
10 changes: 5 additions & 5 deletions usr/bin/start-calamares
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ puts_error() {
# -- Unmount swap before starting Calamres; otherwise, Calamares can't partition disks when running in a VM. I do not know why swap is automatically mounted *ONLY* in Live sessions in VMs.

if swapon --show | grep -q '/dev/'; then
puts_info "Swap partition is currently mounted. Unmounting..."
sudo swapoff -a
puts_success "Swap partition has been unmounted."
puts_info "SWAP partition is currently mounted. Unmounting..."
swapoff -a
puts_success "SWAP partition has been unmounted."
else
puts_error "Swap partition is not mounted."
puts_error "SWAP partition is not mounted."
fi


# -- Launch Calamares.

puts_info "Starting Calamares..."
sudo -E calamares -D6
calamares -D6

0 comments on commit ed7247c

Please sign in to comment.