diff --git a/envycontrol.py b/envycontrol.py index 188ab2d..c8282f8 100755 --- a/envycontrol.py +++ b/envycontrol.py @@ -9,7 +9,7 @@ # begin constants definition -VERSION = '3.4.0' +VERSION = '3.5.0' # Note: Do NOT remove this in cleanup! CACHE_FILE_PATH = '/var/cache/envycontrol/cache.json' @@ -469,10 +469,9 @@ def get_amd_igpu_name(): def rebuild_initramfs(): - - # OSTREE systems first + # OSTree systems first if any(os.path.exists(dir) for dir in ['/ostree', '/sysroot/ostree']): - print('Regenerating initramfs with rpm-ostree. This will take several minutes; please be patient.') + print('Rebuilding the initramfs with rpm-ostree...') command = ['rpm-ostree', 'initramfs', '--enable', '--arg=--force'] # Debian and Ubuntu derivatives diff --git a/flake.nix b/flake.nix index fb6a6d4..dcb528b 100644 --- a/flake.nix +++ b/flake.nix @@ -10,7 +10,7 @@ packages.${system} = { envycontrol = pkgs.python3Packages.buildPythonPackage { pname = "envycontrol"; - version = "3.4.0"; + version = "3.5.0"; src = self; }; default = self.packages.${system}.envycontrol;