commit 93704ef70721b550a06761a432c9880f0bee71ef parent d22983d4c8a7078dc980e27d4d10f7bee132ac11 Author: awy <awy@awy.one> Date: Sat, 26 Jul 2025 02:16:09 +0300 rust Diffstat:
M | .config/shell/aliasrc | | | 2 | +- |
M | .config/swaylock/config | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc @@ -11,7 +11,7 @@ for command in mount umount dinitctl pacman updatedb su shutdown poweroff reboot done; unset command se() { - choice="$(find ~/.local/bin -mindepth 1 -printf '%P\n' | fzf)" + choice="$(fd . --base-directory=$HOME/.local/bin -t f --min-depth=1 | fzf)" [ -f "$HOME/.local/bin/$choice" ] && $EDITOR "$HOME/.local/bin/$choice" } diff --git a/.config/swaylock/config b/.config/swaylock/config @@ -1 +1 @@ -image=$(find /mnt/ssd/papes/. -type f | shuf -n1) +image=$(fd . /mnt/ssd/papes -t f | shuf -n1)