Skip to content

Commit 30ed098

Browse files
Jonathan D.A. Jewellclaude
andcommitted
chore: sync template files and configuration
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 989c729 commit 30ed098

2 files changed

Lines changed: 54 additions & 0 deletions

File tree

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Scripts Repository
2+
3+
Collection of personal scripts and tools.
4+
Contents
5+
6+
7+
8+
asdfman.sh: Manage asdf plugins and versions.
9+
10+
init_bashrc_three_ply.sh: Modular bashrc setup.
11+
12+
k-check.sh: Kinoite cluster validation.
13+
14+
k-intune.sh: Kinoite tuning scripts.
15+
16+
langstrap.sh: Mass language install utilities.
17+
18+
sysenv.sh: System environment setup.
19+
20+
touchscreen_hunter_killer.sh: Touchscreen calibration/management.
21+
22+
Usage
23+
24+
25+
Clone this repo:
26+
27+
git clone git@gitlab.com\:hyperpolymath/scripts.git

justfile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# SPDX-License-Identifier: AGPL-3.0-or-later
2+
# justfile - Just recipes for this project
3+
# See: https://github.com/hyperpolymath/mustfile
4+
5+
# Default recipe
6+
default:
7+
@just --list
8+
9+
# Build the project
10+
build:
11+
@echo "Build not configured yet"
12+
13+
# Run tests
14+
test:
15+
@echo "Tests not configured yet"
16+
17+
# Format code
18+
fmt:
19+
@echo "Formatting not configured yet"
20+
21+
# Lint code
22+
lint:
23+
@echo "Linting not configured yet"
24+
25+
# Clean build artifacts
26+
clean:
27+
@echo "Clean not configured yet"

0 commit comments

Comments
 (0)