summaryrefslogtreecommitdiffstatshomepage
path: root/just-lib.sh
diff options
context:
space:
mode:
authorsommerfeld <sommerfeld@sommerfeld.dev>2026-09-17 15:05:37 +0100
committersommerfeld <sommerfeld@sommerfeld.dev>2026-09-17 15:05:37 +0100
commitf25d094d0652e8dedff206ca56671b3548f755ff (patch)
tree10bdacf9ba14c03e298a196d3d23c5a4ab8fef47 /just-lib.sh
parent0b0ebfe0b6a77f07fe6c92f0c9e5312a330e8196 (diff)
downloaddotfiles-f25d094d0652e8dedff206ca56671b3548f755ff.tar.gz
dotfiles-f25d094d0652e8dedff206ca56671b3548f755ff.tar.bz2
dotfiles-f25d094d0652e8dedff206ca56671b3548f755ff.zip
Add a disposable Canonical desktop test VM
Diffstat (limited to 'just-lib.sh')
-rw-r--r--just-lib.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/just-lib.sh b/just-lib.sh
index 5caa79f..dadf427 100644
--- a/just-lib.sh
+++ b/just-lib.sh
@@ -15,18 +15,18 @@ _find_shells() {
\( -name '*.sh' \
-o -path './dot_local/bin/executable_*' \
-o -path './dot_config/sway/executable_*' \) \
- -not -path './.git/*' -not -path './.worktrees/*'
+ -not -path './.git/*' -not -path './.worktrees/*' -not -path './tmp/*'
}
_find_by_ext() {
find . -type f -name "*.$1" \
- -not -path './.git/*' -not -path './.worktrees/*'
+ -not -path './.git/*' -not -path './.worktrees/*' -not -path './tmp/*'
}
_find_zsh() {
find . -type f \
\( -name 'dot_zshrc' -o -name 'dot_zshenv' -o -name 'dot_zprofile' \) \
- -not -path './.git/*' -not -path './.worktrees/*'
+ -not -path './.git/*' -not -path './.worktrees/*' -not -path './tmp/*'
}
_is_zsh() {