update shell config

This commit is contained in:
2026-03-15 08:51:55 +01:00
parent e0b49d5520
commit 16d2d6faa6
10 changed files with 52 additions and 71 deletions
+8 -1
View File
@@ -1,3 +1,10 @@
#!/bin/sh
wezterm start -- fzfclip "$@"
lockfile=/tmp/fzfclip.lock
exec {LOCK_FD}>"$lockfile"
flock -n "$LOCK_FD" || {
echo "Another instance is running." >&2
exit 1
}
fzfclip "$@"