aboutsummaryrefslogtreecommitdiff
path: root/opt/aux/gen-e-list.sh
blob: 7102e276ad25a431be73b3418890b3414f296486 (plain) (blame)
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
#!/bin/sh
set -eu

{
	cat <<-EOF
		~/txt/TODOs.md
		~/txt/scratch.txt
		$XDG_CONFIG_HOME/sh/rc
		$XDG_CONFIG_HOME/guix/home.scm
		$XDG_CONFIG_HOME/guix/system.scm
		$XDG_CONFIG_HOME/nix/configuration.nix
	EOF

	find \
		~/txt/*.txt ~/txt/*.md \
		-not -name TODOs.md -and \
		-not -name scratch.txt |
			LANG=POSIX.UTF-8 sort

	cat <<-EOF
		~/dev/libre/package-repository/dependencies.dot
		~/dev/private/armário/src/dinheiros/dinheiros.ledger
		~/dev/libre/dotfiles/sh/fake-symlinks.sh
		$XDG_CONFIG_HOME/guix/channels.scm
		$XDG_CONFIG_HOME/lisp-cli/init.lisp
	EOF
} | sed "s|^$HOME|~|"