From 4fa6b9a55778c2cb32596b3ad3980ae33054beaa Mon Sep 17 00:00:00 2001 From: Hariz <122606077+harizms@users.noreply.github.com> Date: Wed, 1 Feb 2023 22:05:44 +0000 Subject: [PATCH] konsave: add page (#9773) --- pages/linux/konsave.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/linux/konsave.md diff --git a/pages/linux/konsave.md b/pages/linux/konsave.md new file mode 100644 index 0000000000..4c5919594c --- /dev/null +++ b/pages/linux/konsave.md @@ -0,0 +1,32 @@ +# konsave + +> A CLI program that lets you save and apply your Linux customizations with just one command. +> More information: . + +- Save the current configuration as a profile: + +`konsave --save {{profile_name}}` + +- Apply a profile: + +`konsave --apply {{profile_name}}` + +- Save the current configuration as a profile, overwriting existing profiles if they exist with the same name: + +`konsave -s {{profile_name}} --force` + +- List all profiles: + +`konsave --list` + +- Remove a profile: + +`konsave --remove {{profile_name}}` + +- Export a profile as a `.knsv` to the home directory: + +`konsave --export-profile {{profile_name}}` + +- Import a `.knsv` profile: + +`konsave --import-profile {{path/to/profile_name.knsv}}`