Compare commits
26 Commits
4c80d69b49
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| ee45d1abe2 | |||
| 4ef7f59629 | |||
| 079bd60500 | |||
| 0bba96fe2d | |||
| 10c3b0a492 | |||
| 7ba7f0e7ef | |||
| 3cd7ad042d | |||
| 9743d131bf | |||
| fc4b4ec281 | |||
| 7447823c11 | |||
| 1e87b03906 | |||
| ba2d189af9 | |||
| 783cfcb618 | |||
| 660a5f1131 | |||
| c6abc7e516 | |||
| 9de5647c77 | |||
| 4da3d152c2 | |||
| 8ce1386b97 | |||
| e39e811572 | |||
| c65fb26a8d | |||
| 7f1aeb8ad1 | |||
| e74c6a4593 | |||
| 1bb00c4e2e | |||
| b521556d47 | |||
| b027f13e29 | |||
| 17e0faa736 |
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.exe filter=lfs diff=lfs merge=lfs -text
|
||||
307
README.md
307
README.md
@@ -1,13 +1,45 @@
|
||||
# My personal tools
|
||||
|
||||
## cln
|
||||
## Introduction
|
||||
|
||||
This repository contains a collection of personal tools I've developed to address various needs and frustrations I've encountered in my workflow. Many of these tools make some questionable decisions, such as embedding configuration files, as they were initially created for my personal use.
|
||||
|
||||
## Table of Contents
|
||||
|
||||
1. File Management Tools
|
||||
- cln
|
||||
- fiter
|
||||
- fmoditer
|
||||
2. Git and Repository Tools
|
||||
- repo
|
||||
- git-vc
|
||||
3. System Utilities
|
||||
- vsclean
|
||||
- lazygit-cleaner
|
||||
- autoruns
|
||||
- hitman
|
||||
4. Directory Management Tools
|
||||
- directory-cleaner
|
||||
- directory-deletor
|
||||
5. Misc
|
||||
- b64encode
|
||||
- cclip
|
||||
- image-transcoder
|
||||
|
||||
## File Management Tools
|
||||
|
||||
### [cln](https://git.site.quack-lab.dev/dave/synclib)
|
||||
**Create symbolic links given a custom set of commands**
|
||||
|
||||
Mainly created out of frustration of windows ""symbolic"" links
|
||||
|
||||
This tool creates real symbolic links on any platform following the syntax of:
|
||||
`source,destination,force?`
|
||||
|
||||
It respects existing files (be them real files or symbolic links)
|
||||
|
||||
Unless force is set to *t* in which case only existing symbolic links are deleted (overwriten)
|
||||
|
||||
Real files will never be deleted by this tool
|
||||
|
||||
The commands can be given by:
|
||||
@@ -29,7 +61,7 @@ Example:
|
||||
|
||||
Given its ability to read files for commands it can be used to manage a "standard" set of symbolic links
|
||||
|
||||
## fiter
|
||||
### [fiter](https://git.site.quack-lab.dev/dave/fiter)
|
||||
**Iterate over files and rename them incrementally**
|
||||
Example:
|
||||
Given
|
||||
@@ -50,7 +82,7 @@ Running `fiter *` would result in:
|
||||
00006.png
|
||||
00007.exe
|
||||
```
|
||||
The order is **not guranteed**
|
||||
The order is **not guaranteed**
|
||||
|
||||
Running `fiter *.mp4` on the same folder would give:
|
||||
```
|
||||
@@ -63,24 +95,287 @@ executable.exe
|
||||
```
|
||||
|
||||
The tool will not delete any files by overwriting existing ones
|
||||
|
||||
And thanks to that it will fail when running on files that have already been renamed by it
|
||||
|
||||
For such scenarios use `fiter -f <glob>`
|
||||
|
||||
*-f* renames all files to \<file\>.bak before renaming them back to their new iterative name
|
||||
|
||||
This means that it can run on files that already have iterative names because none are being overwriten
|
||||
|
||||
**It also means that, on failure, files are left as .bak**
|
||||
|
||||
## fmoditer
|
||||
### [fmoditer](https://git.site.quack-lab.dev/dave/fmoditer)
|
||||
**Iterate over files and rename them to their mod time**
|
||||
|
||||
Works pretty much the same way as *iter* with the exception of *-f* which is not supported by *fmoditer*
|
||||
|
||||
## vsclean
|
||||
Example:
|
||||
Given
|
||||
```
|
||||
video1.mp4
|
||||
video2.mp4
|
||||
video3.mp4
|
||||
```
|
||||
Running `fmoditer *.mp4` would result in
|
||||
```
|
||||
2024-12-15T15-31-53.mp4
|
||||
2022-03-06T12-55-00.mp4
|
||||
2023-05-22T17-11-06.mp4
|
||||
```
|
||||
|
||||
## [Git and Repository Tools](#git-and-repository-tools)
|
||||
|
||||
### [git-vc](https://git.site.quack-lab.dev/dave/git-vc)
|
||||
**Monitors a directory and commits any changes to git on a set interval**
|
||||
Meant to run as a service
|
||||
|
||||
Configuration is done through environmental variables:
|
||||
- *ROOT*
|
||||
- Defaults to /tmp
|
||||
- *SCAN_INTERVAL*
|
||||
- Defaults to 1m
|
||||
|
||||
Runs
|
||||
`git add .` > `git commit -m "Update"` every *SCAN_INTERVAL* on *ROOT*
|
||||
It also sets its identity to *system system@localhost*
|
||||
|
||||
The purpose of this tool is to make sure you never lose any data in a volatile directory
|
||||
|
||||
For example given a directory where it's possible for files to spontaneously combust
|
||||
|
||||
This tool will ensure they're never really lost thanks to git
|
||||
|
||||
### [repo](https://git.site.quack-lab.dev/dave/gitea-api)
|
||||
**Creates repositories on gitea and assigns them as "origin" on the git repository in working directory**
|
||||
|
||||
The configuration of this tool is done through environmental variables:
|
||||
```
|
||||
GITEA_USER=dave
|
||||
GITEA_PASSWORD=supersecret
|
||||
GITA_URL=https://git.site.quack-lab.dev/
|
||||
```
|
||||
|
||||
Fine grained configuration is applied through flags:
|
||||
```
|
||||
Usage of repo.exe:
|
||||
-f Force assignment of the remote (deletes existing origin)
|
||||
-n string
|
||||
Name of the repository (shorthand)
|
||||
-name string
|
||||
Name of the repository
|
||||
-ni
|
||||
Do not add remote to the new repo (shorthand)
|
||||
-noinit
|
||||
Do not add remote to the new repo
|
||||
-p Make the repository private (shorthand)
|
||||
-private
|
||||
Make the repository private
|
||||
-r string
|
||||
Name of the remote to create for the new repository (shorthand) (default "origin")
|
||||
-remote string
|
||||
Name of the remote to create for the new repository (default "origin")
|
||||
```
|
||||
|
||||
## [System Utilities](#system-utilities)
|
||||
|
||||
### [vsclean](https://git.site.quack-lab.dev/dave/vsclean)
|
||||
**"clean" vscode recent projects by deleting non existing entries and adding new folders**
|
||||
|
||||
Reads given directories and adds all folders in directories to vscode's recent projects
|
||||
|
||||
The idea is that all projects in a "projects" folder should be accessible to vscode
|
||||
|
||||
Doing this manually requires opening every folder one by one
|
||||
|
||||
It also removes non existent entries from recent projects and recent files
|
||||
|
||||
##
|
||||
This tool supports **no configuration** outside of constants applied at compile time
|
||||
|
||||
### [lazygit-cleaner]()
|
||||
**Practically the same as vsclean but for lazygit**
|
||||
|
||||
Removes non existing entries from *state.yml* and adds any existing git repositories in projects
|
||||
|
||||
This tool supports **no configuration** outside of constants applied at compile time
|
||||
|
||||
### [autoruns](https://git.site.quack-lab.dev/dave/autoruns)
|
||||
**Runs programs specified in *autoruns.json* (at compile time)**
|
||||
|
||||
This tool is meant to replace windows autoruns and is meant to be magnitudes faster than windows autoruns
|
||||
|
||||
note: autoruns is specifically embedded as to not have to drag *autoruns.json* across multiple directories
|
||||
|
||||
It also supports automatically hiding/closing windows and running only programs that are not already running
|
||||
|
||||
See sample *autoruns.json* in repository of the tool
|
||||
|
||||
Supported json fields are:
|
||||
```go
|
||||
Entry struct {
|
||||
Name string `json:"name"`
|
||||
// ^ only used for logging
|
||||
Path string `json:"path"`
|
||||
// ^ path to the program being run
|
||||
Disabled bool `json:"disabled"`
|
||||
// ^ all entries are enabled by default other than the ones with "disabled": "true"
|
||||
Procname string `json:"procname"`
|
||||
// ^ used for detection to determine whether or not the entry has to be run
|
||||
Procs []string `json:"procs"`
|
||||
// ^ (optional) used for scanning for additional processes before executing actions, some programs start multiple processes as children of the main process and some start multiple processes independently
|
||||
ProcsAction string `json:"procsaction"`
|
||||
// ^ (optional) specifies the action to apply specifically and only to procs
|
||||
Flags []string `json:"flags"`
|
||||
// ^ (optional) command line arguments to pass to executable when starting
|
||||
Workdir string `json:"workdir"`
|
||||
// ^ (optional) workdir in which to start the program
|
||||
Action string `json:"action"`
|
||||
// ^ (optional) what to do with the program on startup (supported are hide/close/click)
|
||||
ActionParams []string `json:"actionparams"`
|
||||
// ^ (optional) parameters for actions, currently used only for click, see example in autoruns.json
|
||||
ActionDelay int `json:"actiondelay"`
|
||||
// ^ (optional) amount of time (in milliseconds) to wait before running action on program startup
|
||||
}
|
||||
```
|
||||
|
||||
This tool supports **no configuration** outside of constants applied at compile time (one of which is autoruns.json)
|
||||
|
||||
### [hitman](https://git.site.quack-lab.dev/dave/hitman)
|
||||
**Kills processes by name at a set interval**
|
||||
|
||||
This tool is meant to be used as a service
|
||||
|
||||
The processes to hate are given through environmental variables:
|
||||
- HITMAN_FORBIDDEN - csv separated list of processes to kill
|
||||
|
||||
Process names must be accurate and are case sensitive
|
||||
|
||||
The tool uses the *kill* command to kill processes
|
||||
|
||||
### [bricker](https://git.site.quack-lab.dev/dave/bricker)
|
||||
**Corrupts random bytes in given files**
|
||||
|
||||
Why? Because I can not disable edge updater malware and I can not stop it from running
|
||||
|
||||
So the next best thing is nuking the exe, right?
|
||||
|
||||
If that doesn't work the next tool will be process-murderer
|
||||
|
||||
To use this tool:
|
||||
```
|
||||
$ brick --help
|
||||
Usage of brick.exe:
|
||||
-p int
|
||||
Percent to mangle (default 20)
|
||||
-unsafe
|
||||
Unsafe mode
|
||||
-w int
|
||||
Workers (default 8)
|
||||
```
|
||||
|
||||
Note: unsafe mode does not create .bak files before corruption
|
||||
|
||||
## [Directory Management Tools](#directory-management-tools)
|
||||
|
||||
### [directory-cleaner](https://git.site.quack-lab.dev/dave/directory-cleaner)
|
||||
**Archives and deletes "old" files in a given directory**
|
||||
Meant to run as a service - preferably in a docker container
|
||||
|
||||
Meant to clean up "temporary" directories where the host program does not do a good job of deleting old entries, for example the windows temp
|
||||
|
||||
Configuration is given through environmental variables:
|
||||
- *ROOT*
|
||||
- Defaults to /tmp
|
||||
- The root directory to be watched
|
||||
- *ROOT_ARCHIVE*
|
||||
- Defaults to *ROOT*/archive
|
||||
- Directory in which "old" entries are placed before deletion
|
||||
- *IGNORED_DIRECTORIES*
|
||||
- Directories to ignore when scanning
|
||||
- *SCAN_INTERVAL*
|
||||
- Defaults to 1m
|
||||
- Interval between scans
|
||||
- *ARCHIVE_THRESHOLD*
|
||||
- Defaults to 1d
|
||||
- Time threshold for a file to be considered "old" and put into archive (*ROOT_ARCHIVE*)
|
||||
- *DELETE_THRESHOLD*
|
||||
- Defaults to 12h
|
||||
- Time threshold for a file to be deleted out of the archive
|
||||
- This threshold should be applied in addition to *ARCHIVE_THRESHOLD*
|
||||
- For example to specify a lifetime of 2 days for files you could do 1d 1d between archive and delete
|
||||
- *USE_MODTIME*
|
||||
- Defaults to false
|
||||
- Use modtime instead of accesstime
|
||||
|
||||
The tool uses access time to determine age of files with the thinking that files that should be deleted are ones that are not used
|
||||
|
||||
It also supports using mod time instead
|
||||
|
||||
This is important because moving files from *ROOT* to *ROOT_ARCHIVE* after *ARCHIVE_THRESHOLD* **resets their atime and mtime**
|
||||
|
||||
...because they're accessed and modified
|
||||
|
||||
Therefore file time to live is actually *ARCHIVE_THRESHOLD* + *DELETE_THRESHOLD*
|
||||
|
||||
### [directory-deletor](https://git.site.quack-lab.dev/dave/directory-deletor)
|
||||
**Deletes given directories in a directory on a set interval**
|
||||
|
||||
Very similar to *directory-cleaner* except that this tool straight out deletes given directories
|
||||
|
||||
It's meant to combat windows unrelenting spam of "3D Projects" in ~
|
||||
|
||||
Who even uses that folder? Why is it there? Why can't I delete it? Well, now you can
|
||||
|
||||
Part of the configuration is done through command line arguments:
|
||||
```
|
||||
-scan int
|
||||
scan interval in seconds (default 60)
|
||||
-wd string
|
||||
working directory
|
||||
```
|
||||
|
||||
And part through environmental variables:
|
||||
- *FORBIDDEN*
|
||||
- csv separated list of directories to delete
|
||||
- Those whose existence is forbidden
|
||||
- *PATH_PREFIX*
|
||||
- A prefix prepended to work directory
|
||||
- Why? I don't remember
|
||||
|
||||
## [Misc](#misc)
|
||||
|
||||
### [b64encode](https://git.site.quack-lab.dev/dave/b64encode)
|
||||
**Encodes and decodes base64**
|
||||
|
||||
That's it. Very small and simple tool
|
||||
|
||||
### [cclip](https://git.site.quack-lab.dev/dave/cclip)
|
||||
**Temporary clipboard history**
|
||||
|
||||
It simply "remembers" whatever you copied and relays it into the console.
|
||||
|
||||
The point of this program is to allow you to copy many entries from A to B without going between A and B every copy; ie you can copy N entries from A one by one (say links from a browser), tab into cclip and copy all N entries at once instead of copying an item from A, tabbing into B, pasting item, tabbing into A, getting the next...
|
||||
|
||||
### [image-transcoder](https://git.site.quack-lab.dev/dave/image-transcoder)
|
||||
**Image transcoding**
|
||||
|
||||
Very simple tool that transcodes between image formats
|
||||
|
||||
Usage:
|
||||
```
|
||||
$ itrans --help
|
||||
Usage of itrans:
|
||||
-nosafe
|
||||
Prevents backup of the original before encoding
|
||||
-quality int
|
||||
Quality of the image (default 80)
|
||||
-rm
|
||||
Removes the original after transcoding
|
||||
-to string
|
||||
Extension to transcode to (default ".jpg")
|
||||
-w int
|
||||
Workers (default 8)
|
||||
```
|
||||
|
||||
Supports png, jpg, jpeg and webp
|
||||
BIN
autoruns.exe
LFS
Normal file
BIN
autoruns.exe
LFS
Normal file
Binary file not shown.
BIN
b64encode.exe
LFS
Normal file
BIN
b64encode.exe
LFS
Normal file
Binary file not shown.
53
b64encode.json
Normal file
53
b64encode.json
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"version": "1.0.1",
|
||||
"description": "Simple TUI for encoding and decoding base64 strings",
|
||||
"homepage": "https://git.site.quack-lab.dev/dave/tools",
|
||||
"license": "",
|
||||
"notes": "",
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/b64encode.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/b64encode.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"arm64": {
|
||||
"url": "",
|
||||
"hash": ""
|
||||
}
|
||||
},
|
||||
"pre_install": "",
|
||||
"installer": {
|
||||
"script": ""
|
||||
},
|
||||
"post_install": [],
|
||||
"uninstaller": {
|
||||
"script": ""
|
||||
},
|
||||
"bin": "b64encode.exe",
|
||||
"env_add_path": [],
|
||||
"persist": [],
|
||||
"checkver": {
|
||||
"url": "",
|
||||
"regex": ""
|
||||
},
|
||||
"autoupdate": {
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/b64encode.exe"
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/b64encode.exe"
|
||||
},
|
||||
"arm64": {
|
||||
"url": ""
|
||||
}
|
||||
},
|
||||
"hash": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/b64encode.exe",
|
||||
"regex": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
53
brick.json
Normal file
53
brick.json
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"version": "1.0.1",
|
||||
"description": "CLI utility used to corrupt files, writes random bytes corrupting a given % of a file",
|
||||
"homepage": "https://git.site.quack-lab.dev/dave/tools",
|
||||
"license": "",
|
||||
"notes": "",
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/brick.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/brick.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"arm64": {
|
||||
"url": "",
|
||||
"hash": ""
|
||||
}
|
||||
},
|
||||
"pre_install": "",
|
||||
"installer": {
|
||||
"script": ""
|
||||
},
|
||||
"post_install": [],
|
||||
"uninstaller": {
|
||||
"script": ""
|
||||
},
|
||||
"bin": "brick.exe",
|
||||
"env_add_path": [],
|
||||
"persist": [],
|
||||
"checkver": {
|
||||
"url": "",
|
||||
"regex": ""
|
||||
},
|
||||
"autoupdate": {
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/brick.exe"
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/brick.exe"
|
||||
},
|
||||
"arm64": {
|
||||
"url": ""
|
||||
}
|
||||
},
|
||||
"hash": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/brick.exe",
|
||||
"regex": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
53
cclip.json
Normal file
53
cclip.json
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"version": "1.0.1",
|
||||
"description": "Simple TUI that tracks changes to clipboard aggregating them in one place",
|
||||
"homepage": "https://git.site.quack-lab.dev/dave/tools",
|
||||
"license": "",
|
||||
"notes": "",
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/cclip.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/cclip.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"arm64": {
|
||||
"url": "",
|
||||
"hash": ""
|
||||
}
|
||||
},
|
||||
"pre_install": "",
|
||||
"installer": {
|
||||
"script": ""
|
||||
},
|
||||
"post_install": [],
|
||||
"uninstaller": {
|
||||
"script": ""
|
||||
},
|
||||
"bin": "cclip.exe",
|
||||
"env_add_path": [],
|
||||
"persist": [],
|
||||
"checkver": {
|
||||
"url": "",
|
||||
"regex": ""
|
||||
},
|
||||
"autoupdate": {
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/cclip.exe"
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/cclip.exe"
|
||||
},
|
||||
"arm64": {
|
||||
"url": ""
|
||||
}
|
||||
},
|
||||
"hash": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/cclip.exe",
|
||||
"regex": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
1
cln.exe
1
cln.exe
@@ -1 +0,0 @@
|
||||
C:/Users/Administrator/Seafile/Projects-Go/GoProjects/synclib/main.exe
|
||||
53
cln.json
Normal file
53
cln.json
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"version": "1.0.1",
|
||||
"description": "CLI utility for creating symbolic links from custom commands that may be stored as files",
|
||||
"homepage": "https://git.site.quack-lab.dev/dave/tools",
|
||||
"license": "",
|
||||
"notes": "",
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/cln.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/cln.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"arm64": {
|
||||
"url": "",
|
||||
"hash": ""
|
||||
}
|
||||
},
|
||||
"pre_install": "",
|
||||
"installer": {
|
||||
"script": ""
|
||||
},
|
||||
"post_install": [],
|
||||
"uninstaller": {
|
||||
"script": ""
|
||||
},
|
||||
"bin": "cln.exe",
|
||||
"env_add_path": [],
|
||||
"persist": [],
|
||||
"checkver": {
|
||||
"url": "",
|
||||
"regex": ""
|
||||
},
|
||||
"autoupdate": {
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/cln.exe"
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/cln.exe"
|
||||
},
|
||||
"arm64": {
|
||||
"url": ""
|
||||
}
|
||||
},
|
||||
"hash": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/cln.exe",
|
||||
"regex": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
C:/Users/Administrator/Seafile/Projects-Go/GoProjects/fiter/main.exe
|
||||
53
fiter.json
Normal file
53
fiter.json
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"version": "1.0.1",
|
||||
"description": "CLI utility for renaming files by appending an index left padded with zeros",
|
||||
"homepage": "https://git.site.quack-lab.dev/dave/tools",
|
||||
"license": "",
|
||||
"notes": "",
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/fiter.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/fiter.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"arm64": {
|
||||
"url": "",
|
||||
"hash": ""
|
||||
}
|
||||
},
|
||||
"pre_install": "",
|
||||
"installer": {
|
||||
"script": ""
|
||||
},
|
||||
"post_install": [],
|
||||
"uninstaller": {
|
||||
"script": ""
|
||||
},
|
||||
"bin": "fiter.exe",
|
||||
"env_add_path": [],
|
||||
"persist": [],
|
||||
"checkver": {
|
||||
"url": "",
|
||||
"regex": ""
|
||||
},
|
||||
"autoupdate": {
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/fiter.exe"
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/fiter.exe"
|
||||
},
|
||||
"arm64": {
|
||||
"url": ""
|
||||
}
|
||||
},
|
||||
"hash": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/fiter.exe",
|
||||
"regex": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
fmoditer.exe
LFS
BIN
fmoditer.exe
LFS
Binary file not shown.
53
fmoditer.json
Normal file
53
fmoditer.json
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"version": "1.0.1",
|
||||
"description": "CLI utility for renaming files to their ISO formatted modtime",
|
||||
"homepage": "https://git.site.quack-lab.dev/dave/tools",
|
||||
"license": "",
|
||||
"notes": "",
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/fmoditer.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/fmoditer.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"arm64": {
|
||||
"url": "",
|
||||
"hash": ""
|
||||
}
|
||||
},
|
||||
"pre_install": "",
|
||||
"installer": {
|
||||
"script": ""
|
||||
},
|
||||
"post_install": [],
|
||||
"uninstaller": {
|
||||
"script": ""
|
||||
},
|
||||
"bin": "fmoditer.exe",
|
||||
"env_add_path": [],
|
||||
"persist": [],
|
||||
"checkver": {
|
||||
"url": "",
|
||||
"regex": ""
|
||||
},
|
||||
"autoupdate": {
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/fmoditer.exe"
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/fmoditer.exe"
|
||||
},
|
||||
"arm64": {
|
||||
"url": ""
|
||||
}
|
||||
},
|
||||
"hash": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/fmoditer.exe",
|
||||
"regex": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
git-vc.exe
LFS
Normal file
BIN
git-vc.exe
LFS
Normal file
Binary file not shown.
BIN
hitman.exe
LFS
Normal file
BIN
hitman.exe
LFS
Normal file
Binary file not shown.
BIN
itrans.exe
LFS
Normal file
BIN
itrans.exe
LFS
Normal file
Binary file not shown.
BIN
lazygit-cleaner.exe
LFS
Normal file
BIN
lazygit-cleaner.exe
LFS
Normal file
Binary file not shown.
53
repo.json
Normal file
53
repo.json
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"version": "1.1.1",
|
||||
"description": "CLI utility for creating repositories on a given git server and assigning them to the current local git repository",
|
||||
"homepage": "https://git.site.quack-lab.dev/dave/tools",
|
||||
"license": "",
|
||||
"notes": "",
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/repo.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/repo.exe",
|
||||
"hash": ""
|
||||
},
|
||||
"arm64": {
|
||||
"url": "",
|
||||
"hash": ""
|
||||
}
|
||||
},
|
||||
"pre_install": "",
|
||||
"installer": {
|
||||
"script": ""
|
||||
},
|
||||
"post_install": [],
|
||||
"uninstaller": {
|
||||
"script": ""
|
||||
},
|
||||
"bin": "repo.exe",
|
||||
"env_add_path": [],
|
||||
"persist": [],
|
||||
"checkver": {
|
||||
"url": "",
|
||||
"regex": ""
|
||||
},
|
||||
"autoupdate": {
|
||||
"architecture": {
|
||||
"64bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/repo.exe"
|
||||
},
|
||||
"32bit": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/repo.exe"
|
||||
},
|
||||
"arm64": {
|
||||
"url": ""
|
||||
}
|
||||
},
|
||||
"hash": {
|
||||
"url": "https://git.site.quack-lab.dev/dave/tools/media/branch/master/repo.exe",
|
||||
"regex": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
17
sync
17
sync
@@ -1,4 +1,13 @@
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\fiter\main.exe",fiter.exe
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\fmoditer\main.exe",fmoditer.exe
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\project-scanner\main.exe",vsclean.exe
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\synclib\main.exe",cln.exe
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\fiter\fiter.exe",fiter.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\fmoditer\fmoditer.exe",fmoditer.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\project-scanner\main.exe",vsclean.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\synclib\cln.exe",cln.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\gitea-api\repo.exe",repo.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\autoruns\autoruns.exe",autoruns.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\git-vc\gitvc.exe",git-vc.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\lazygit-cleaner\lazygit-cleaner.exe",lazygit-cleaner.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\b64encode\b64encode.exe",b64encode.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\cclip\cclip.exe",cclip.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\image-transcoder\image-transcoder.exe",itrans.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\exe-bricker\bricker.exe",brick.exe,t,t,t
|
||||
"C:\Users\Administrator\Seafile\Projects-Go\GoProjects\hitman\hitman.exe",hitman.exe,t,t,t
|
||||
11
sync2bin
11
sync2bin
@@ -0,0 +1,11 @@
|
||||
fiter.exe,"C:\Program Files\Git\usr\bin\fiter.exe",t
|
||||
fmoditer.exe,"C:\Program Files\Git\usr\bin\fmoditer.exe",t
|
||||
vsclean.exe,"C:\Program Files\Git\usr\bin\vsclean.exe",t
|
||||
cln.exe,"C:\Program Files\Git\usr\bin\cln.exe",t
|
||||
repo.exe,"C:\Program Files\Git\usr\bin\repo.exe",t
|
||||
autoruns.exe,"~\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\Autoruns.exe",t
|
||||
autoruns.exe,"C:\Program Files\Git\usr\bin\autoruns.exe",t
|
||||
lazygit-cleaner.exe,"C:\Program Files\Git\usr\bin\lgclean.exe",t
|
||||
cclip.exe,"C:\Program Files\Git\usr\bin\cclip.exe",t
|
||||
itrans.exe,"C:\Program Files\Git\usr\bin\itrans.exe",t
|
||||
brick.exe,"C:\Program Files\Git\usr\bin\brick.exe",t
|
||||
BIN
vsclean.exe
LFS
BIN
vsclean.exe
LFS
Binary file not shown.
Reference in New Issue
Block a user