Skip to content

Commit c5938b3

Browse files
committed
2026-06-27
1 parent e8b242f commit c5938b3

25 files changed

Lines changed: 6728 additions & 931 deletions

File tree

.cspell.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,20 @@ dictionaryDefinitions:
1313
- "name": "My CSS"
1414
"path": "~/.devhidden/dictionaries/dictionary-css.txt"
1515
"addWords": true
16+
- name: 'Comp Sci'
17+
path: '~/.devhidden/dictionaries/dictionary-compsci.txt'
18+
addWords: true
19+
- name: 'General'
20+
path: '~/.devhidden/dictionaries/dictionary-general.txt'
21+
addWords: true
22+
- name: 'Names'
23+
path: '~/.devhidden/dictionaries/dictionary-names.txt'
24+
addWords: true
1625
dictionaries:
1726
- "hyperupcall"
27+
- 'Comp Sci'
28+
- 'General'
29+
- 'Names'
1830
- 'bash'
1931
- "My Bash"
2032
- 'My Linux'

.github/workflows/update-denylist.yaml

Lines changed: 0 additions & 53 deletions
This file was deleted.

Bakefile.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ EOF
8282

8383
# grep '-P' not compatible with with multiple arguments using '-e'.
8484
for pattern in "${_private_forbidden_patterns[@]}"; do
85-
if grep -IPr --exclude 'setup-private.*' --exclude .clangd --exclude-dir .git --exclude-dir node_modules --exclude-dir .data --exclude-dir vendor --exclude-dir target --exclude-dir .jekyll-cache --exclude-dir shell.d --exclude-dir bash.d --exclude-dir zsh.d "${_private_forbidden_patterns_exclude[@]}" --color=always "$pattern" ./ | grep -Ev '(#|//|") lint-ignore' | grep -v ./config-editor/.config/kate/formatting/settings.json; then
85+
if grep -IPr --exclude 'setup-private.*' --exclude .clangd --exclude-dir .git --exclude-dir node_modules --exclude-dir .data --exclude-dir vendor --exclude-dir target --exclude-dir .jekyll-cache --exclude-dir shell.d --exclude-dir bash.d --exclude-dir zsh.d "${_private_forbidden_patterns_exclude[@]}" --color=always "$pattern" ./ | grep -Ev '(#|//|") lint-ignore' | grep -v ./config-editor/.config/kate/formatting/settings.json | grep -v pnpm-lock.yaml | grep -v pnpm-workspace.yaml; then
8686
printf 'Expected to find no matches for: %s\n' "$pattern"
8787
err=1
8888
fi
8989
done
9090

91-
cd "./config-linux-rice/.config/X11/resources" || exit
91+
cd "./config-unused/.config/X11/resources" || exit
9292
printf '%s\n' "! GENERATED BY 'bake build'" >uxterm.Xresources
9393
sed 's/XTerm/UXTerm/g' xterm.Xresources >>uxterm.Xresources
9494

0 commit comments

Comments
 (0)