blob: 24a50548dde4eece2d177ee7d9ce8a29d037c63c (
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
|
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
```
|