https://github.com/arantebw/skript
Automation scripts for routine tasks.
https://github.com/arantebw/skript
automation python
Last synced: about 1 year ago
JSON representation
Automation scripts for routine tasks.
- Host: GitHub
- URL: https://github.com/arantebw/skript
- Owner: arantebw
- License: mit
- Created: 2019-06-30T10:28:09.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2025-04-03T03:33:05.000Z (about 1 year ago)
- Last Synced: 2025-04-03T04:27:01.982Z (about 1 year ago)
- Topics: automation, python
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# skript
A collection of personal automation scripts for my known-repeatable tasks.
## Setup
- Create a new symbolic link of a script, or update an existing one.
```console
// create
ln -s source-path destination-path
// update
ln -sf source-path destination-path
```
NOTE: Enter the full path for the `source` and `destination` paths.
- Make the script file executable.
```console
chmod +x file
```
Or,
```console
chmod 755 file
```