blob: 214e316251192e1d697583a247bc9b109f4ff2e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
I'm experimenting with doing "user-level" configuration using Python scripts.
This directory contains a Python module with entrypoints that I use for many tasks.
Bootstrapping on a Fedora toolbox:
```
dnf install pipx emacs-nox xclip
```
Bootstrapping on Debian:
```
sudo apt install git pipx emacs-nox xclip
```
```
mkdir git
cd git
git clone https://github.com/alexpdp7/alexpdp7.git
cd alexpdp7
pipx install -e scripts/ # alternatively, use uv tool install -e .
...
git remote set-url origin git@github.com:alexpdp7/alexpdp7.git
```
See [workstation](../workstation) for further details.
|