File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments