Pārlūkot izejas kodu

Update 'README.md'

Bernardo Magri 1 gadu atpakaļ
vecāks
revīzija
65110e0035
1 mainītis faili ar 4 papildinājumiem un 8 dzēšanām
  1. 4 8
      README.md

+ 4 - 8
README.md

@@ -1,7 +1,3 @@
-Here's a sample `README.md` file that explains how to use the `snap-slack` script, including how to create, manage, and adopt snapshots:
-
----
-
 # Snap-Slack: Btrfs Snapshot Manager with Elilo Bootloader Integration
 
 **Snap-Slack** is a Python-based utility for managing Btrfs snapshots on Slackware Linux. It provides functionality to create snapshots, manage existing snapshots, clean up old snapshots, and adopt snapshots as the new root subvolume. The tool also integrates with the **Elilo** bootloader, updating the configuration automatically to include snapshots.
@@ -34,13 +30,13 @@ Here's a sample `README.md` file that explains how to use the `snap-slack` scrip
     sudo installpkg /tmp/snap-slack-1.0-x86_64-1_SBo.txz
     ```
 
-This will install the script to `/usr/bin/snap-slack` and place the configuration file at `/etc/manage_snapshots/config.toml`.
+This will install the script to `/usr/bin/snap-slack` and place the configuration file at `/etc/snap-slack/config.toml`.
 
 ## Configuration
 
 The script reads its configuration from `/etc/manage_snapshots/config.toml`. You may need to edit this file to match your system's settings.
 
-Here is an example configuration (`/etc/manage_snapshots/config.toml`):
+Here is an example configuration (`/etc/snap-slack/config.toml`):
 
 ```toml
 [snapshot]
@@ -117,7 +113,7 @@ This will:
 ### Creating a Snapshot Before System Upgrade
 
 ```bash
-snap-slack create_snapshot
+snap-slack create
 slackpkg upgrade-all
 ```
 
@@ -128,7 +124,7 @@ This ensures that a snapshot is taken before performing a system upgrade.
 If your system has issues after a recent change, you can roll back to a previous snapshot:
 
 ```bash
-snap-slack adopt_snapshot --snapshot snapshot-20231015-123456
+snap-slack adopt --snapshot snapshot-20231015-123456
 ```
 
 This will set `snapshot-20231015-123456` as the new root subvolume.