Update branding

This commit is contained in:
Michael Smith 2024-09-02 22:36:25 +02:00
parent 12f929d699
commit 7a8eec026b
3 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,5 @@
{ {
description = "Desk OS - A simple, general purpose operating system for desktop computers"; description = "deskOS - An easy to use, stable desktop operating system";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";

View File

@ -115,13 +115,13 @@ navigation: widget
# are visible as buttons there if the corresponding *show* keys # are visible as buttons there if the corresponding *show* keys
# are set to "true" (they can also be overridden). # are set to "true" (they can also be overridden).
strings: strings:
productName: Desk OS productName: deskOS
shortProductName: Desk OS shortProductName: deskOS
version: version:
shortVersion: shortVersion:
versionedName: Desk OS versionedName: deskOS
shortVersionedName: Desk OS shortVersionedName: deskOS
bootloaderEntryName: Desk OS bootloaderEntryName: deskOS
productUrl: https://nixup.io/ productUrl: https://nixup.io/
supportUrl: https://nixup.io supportUrl: https://nixup.io
knownIssuesUrl: https://github.com/nixup-io/desk-os/issues knownIssuesUrl: https://github.com/nixup-io/desk-os/issues

View File

@ -172,7 +172,7 @@ configuration_tail = """
""" """
def pretty_name(): def pretty_name():
return _("Installing Desk OS.") return _("Installing deskOS.")
status = pretty_name() status = pretty_name()
@ -196,10 +196,10 @@ def catenate(d, key, *values):
def run(): def run():
"""Desk OS Configuration.""" """deskOS Configuration."""
global status global status
status = _("Configuring Desk OS") status = _("Configuring deskOS")
libcalamares.job.setprogress(0.1) libcalamares.job.setprogress(0.1)
# Create initial config file # Create initial config file
@ -223,7 +223,7 @@ def run():
cfg += """ boot.initrd.luks.devices."{}".device = "/dev/disk/by-uuid/{}";\n""".format( cfg += """ boot.initrd.luks.devices."{}".device = "/dev/disk/by-uuid/{}";\n""".format(
part["luksMapperName"], part["uuid"]) part["luksMapperName"], part["uuid"])
status = _("Configuring Desk OS") status = _("Configuring deskOS")
libcalamares.job.setprogress(0.18) libcalamares.job.setprogress(0.18)
cfg += cfghostname cfg += cfghostname
@ -334,7 +334,7 @@ def run():
pattern = "@@{key}@@".format(key=key) pattern = "@@{key}@@".format(key=key)
cfg = cfg.replace(pattern, str(variables[key])) cfg = cfg.replace(pattern, str(variables[key]))
status = _("Generating Desk OS configuration") status = _("Generating deskOS configuration")
libcalamares.job.setprogress(0.25) libcalamares.job.setprogress(0.25)
try: try:
@ -354,7 +354,7 @@ def run():
libcalamares.utils.host_env_process_output( libcalamares.utils.host_env_process_output(
["cp", "/dev/stdin", flakeFile], None, flake) ["cp", "/dev/stdin", flakeFile], None, flake)
status = _("Installing Desk OS") status = _("Installing deskOS")
libcalamares.job.setprogress(0.3) libcalamares.job.setprogress(0.3)
# Install # Install