Paws/README.md

128 lines
4.4 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)
2024-04-08 10:39:45 +00:00
* [Tmux](#tmux)
2024-06-05 22:33:06 +00:00
* [Docker](#docker)
* [Docker Compose](#docker-compose)
2024-03-07 20:35:11 +00:00
* [Python Scripts](#python-scripts)
* [rename_backslash.py](#rename_backslash-py)
* [Shell Scripts](#shell-scripts)
* [24-bit-color.sh](#24-bit-color-sh)
2024-06-24 20:14:12 +00:00
* [reinstall-packages-with-missing-files.sh](#reinstall-packages-with-missing-files-sh)
2024-03-07 20:35:11 +00:00
* [rsync-incremental-backups.sh](#rsync-incremental-backups-sh)
* [set_dns_search_domain.sh](#set_dns_search_domain-sh)
2024-03-24 09:54:03 +00:00
2023-09-08 08:26:02 +00:00
---
2024-03-24 09:54:03 +00:00
## [Configs](Configs/)
2023-10-08 13:27:50 +00:00
2024-03-24 09:54:03 +00:00
### [Cura](Configs/Cura/)
2023-10-08 13:27:50 +00:00
2024-03-24 09:54:03 +00:00
#### [Materials](Configs/Cura/Materials/)
2023-10-08 13:27:50 +00:00
2024-03-24 09:54:03 +00:00
##### [Clas Ohlsson's PLA](Configs/Cura/Materials/ClasOhlssonPLA.xml.fdm_material)
2023-10-08 13:27:50 +00:00
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-05-06 20:38:48 +00:00
---
2024-04-06 21:08:28 +00:00
### [Tmux](Configs/Tmux/tmux.conf)
My tmux config file. Some note worthy changes are:
2024-06-17 20:19:09 +00:00
* `prefix` + `r` for quick reloading the config
* higher history limit
* `alt + arrow keys` to quickly change active panel
2024-06-05 22:33:06 +00:00
## Docker
### Docker Compose
README's are in there respectively docker compose folders
2024-03-22 22:38:09 +00:00
## [Python Scripts](PythonScripts/)
2024-03-06 14:46:44 +00:00
2024-03-22 21:36:38 +00:00
### [rename_backslash.py](PythonScripts/rename_backslash.py)
2024-03-06 14:46:44 +00:00
2024-07-04 20:52:16 +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
2024-07-04 20:52:16 +00:00
Run with ether of the commands below and replace `<path>` your
actual path to the folder where the files
are located that you want to rename.
```Bash
python PythonScripts/rename_backslash.py <path>
```
or
```Bash
PythonScripts/rename_backslash.py <path>
```
2024-03-24 09:54:03 +00:00
## [Shell Scripts](ShellScripts/)
2024-03-06 14:46:44 +00:00
2024-03-12 21:02:04 +00:00
This folder has a loot of different shell scripts for everything from automating stuff to toys.
2023-10-08 13:27:50 +00:00
2024-03-24 09:54:03 +00:00
### [24-bit-color.sh](ShellScripts/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
### [reinstall-packages-with-missing-files.sh](ShellScripts/reinstall-packages-with-missing-files.sh)
Reinstall all packages with missing files
This script uses the `pacman` package manager to check for packages with
missing files. It then iterates over each package and reinstalls it using
`pacman`. The `--overwrite` flag is used to ensure that any conflicting
files are overwritten. Finally, the `--noconfirm` flag is used to avoid
confirmation prompts for each package.
2024-06-23 13:47:38 +00:00
> Warning: This script overwrites any modified files on the system with the original files from the packages.
Usage:
> Note needs to be run as root.
```Bash
./ShellScripts/reinstall-packages-with-missing-files.sh
```
2024-03-24 09:54:03 +00:00
### [rsync-incremental-backups.sh](ShellScripts/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.
---
2024-03-24 09:54:03 +00:00
### [set_dns_search_domain.sh](ShellScripts/set_dns_search_domain.sh)
Is a small script that runs the resolvectl domain command when the specific a Wi-Fi network is gets connected.
* **To configure the system to run the script:**
You can configure your system to execute the script whenever the Wi-Fi connection event occurs. This typically involves using network manager scripts or similar mechanisms provided by your Linux distribution.
replace the `<Your_Targeted_WiFi_SSID>`, `<interface>` and `<domain>` with the actual values you have.
For example, with NetworkManager, you can place the script in the /etc/NetworkManager/dispatcher.d directory. Scripts in this directory are executed when network events occur.
```Bash
sudo cp set_dns_search_domain.sh /etc/NetworkManager/dispatcher.d/
```
Ensure that the script has execute permissions:
```Bash
sudo chmod +x /etc/NetworkManager/dispatcher.d/set_dns_search_domain.sh
```
The script will be automatically executed whenever the Wi-Fi connection event occurs. When the targeted Wi-Fi network is connected, the DNS search domain will be set for the specified interface.