Paws/README.md

51 lines
1.5 KiB
Markdown
Raw Normal View History

2023-05-11 12:54:10 +00:00
# Paws
2023-09-07 20:04:52 +00:00
This repo holds most of my random small scripts, configs, paws(blobs)
---
## Contents
2023-10-08 13:27:50 +00:00
* [Configs](#configs)
* [Cura](#cura)
* [Materials](#materials)
2024-03-07 20:35:11 +00:00
* [Clas Ohlsson's PLA](#clas-ohlsson-s-pla)
* [Python Scripts](#python-scripts)
* [rename_backslash.py](#rename_backslash-py)
* [Shell Scripts](#shell-scripts)
* [24-bit-color.sh](#24-bit-color-sh)
* [rsync-incremental-backups.sh](#rsync-incremental-backups-sh)
2023-09-07 20:04:52 +00:00
2023-09-08 08:26:02 +00:00
---
## Configs
2023-10-08 13:27:50 +00:00
### Cura
2023-10-08 13:27:50 +00:00
#### Materials
2023-10-08 13:27:50 +00:00
##### Clas Ohlsson's PLA
2023-09-10 19:50:59 +00:00
The material config file for Clas Ohlsson's PLA Materials
2023-10-08 13:27:50 +00:00
2024-03-06 14:46:44 +00:00
## Python Scripts
### rename_backslash.py
2024-03-07 20:35:11 +00:00
A script to replace backslashes(\\) with in filenames within a directory and its sub-directories.
2024-03-06 14:46:44 +00:00
## Shell Scripts
This folder has a loot of diffrent shell scripts for everything from automating stuff to toys.
2023-10-08 13:27:50 +00:00
2023-09-08 08:26:02 +00:00
### 24-bit-color.sh
2023-10-08 13:27:50 +00:00
2023-09-07 20:07:19 +00:00
This script echoes a bunch of 24-bit color codes to the terminal to demonstrate its functionality and test color support of terminals.
2023-09-08 08:26:02 +00:00
![An image showing four lines the first is fading black to red, second black to green, third black to blue, and the last is all rainbow colours](Docs/img/24-bit-color.png)
---
2023-10-08 13:27:50 +00:00
2023-09-08 08:26:02 +00:00
### rsync-incremental-backups.sh
2023-10-08 13:27:50 +00:00
2023-09-08 08:26:02 +00:00
This script performs incremental backups of the specified source directory using rsync, and it keeps a symbolic link called 'latest' pointing to the most recent backup for easy reference. The script also logs backup details in a log file with a timestamp. Make sure to replace `<input folder>` and `<output folder>` with your actual source and backup directories.