From bdd3eee69fd97bffce28a0c5ee69f2323d8771c0 Mon Sep 17 00:00:00 2001 From: derfenix Date: Sat, 4 Jan 2025 19:38:14 +0300 Subject: [PATCH] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c180cb5..0a29f53 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A simple tool to organize your photos, videos, or other files by copying or hard I use a smartphone and Syncthing to automatically sync my photos to my PC. However, if I clean up my phone's memory, the synced photos on my PC are deleted as well. To avoid this, I needed a solution to back up and organize my photos without manual effort. -Dumping everything into one folder wasn't an option—finding anything later would be a nightmare. So, I built this tool in one evening to solve the problem. It has worked flawlessly for me and might help you too. If you encounter any issues, feel free to open a ticket—I'll do my best to assist. +Dumping everything into one folder wasn't an option — finding anything later would be a nightmare. So, I built this tool in one evening to solve the problem. It has worked flawlessly for me and might help you too. If you encounter any issues, feel free to open a ticket — I'll do my best to assist. ## Installation @@ -47,12 +47,12 @@ Currently, the timestamp format is not customizable. Let me know if support for ### One-Time Run #### Copy Files -```bash +```shell photocatalog -mode copy -target ./photos/ -source ./sync/photos/ ``` #### Create Hardlinks -```bash +```shell photocatalog -mode hardlink -target ./photos/ -source ./sync/photos/ ``` @@ -61,12 +61,12 @@ photocatalog -mode hardlink -target ./photos/ -source ./sync/photos/ Enable continuous monitoring of a source directory: #### Copy Files -```bash +```shell photocatalog -mode copy -target ./photos -watch -source ./sync/photos/ ``` #### Create Hardlinks -```bash +```shell photocatalog -mode hardlink -target ./photos/ -watch -source ./sync/photos/ ``` @@ -75,7 +75,7 @@ photocatalog -mode hardlink -target ./photos/ -watch -source ./sync/photos/ ### Systemd Setup Install and configure the service: -```bash +```shell sh ./init/install_service.sh systemd ``` @@ -86,7 +86,7 @@ This will: 3. Open the config file for editing. Enable and start the service: -```bash +```shell systemctl --user enable --now photocatalog ```