summaryrefslogtreecommitdiff
path: root/fedora/.local/bin/fzffiles
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-05-19 11:15:10 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-05-19 11:15:10 +0900
commitb4b9266564d91a6d5b8bcbda0e3e3df5e60c108c (patch)
tree345803f1853865049246bf59ac790c64d5269055 /fedora/.local/bin/fzffiles
parent043a5608aa442206b939cd5d4feff6454e431781 (diff)
updates
Diffstat (limited to 'fedora/.local/bin/fzffiles')
-rwxr-xr-xfedora/.local/bin/fzffiles96
1 files changed, 0 insertions, 96 deletions
diff --git a/fedora/.local/bin/fzffiles b/fedora/.local/bin/fzffiles
deleted file mode 100755
index 58af9d0..0000000
--- a/fedora/.local/bin/fzffiles
+++ /dev/null
@@ -1,96 +0,0 @@
-#!/bin/sh
-
-set -e
-
-# Set new line and tab for word splitting
-IFS='
-'
-
-# Get the list of selected files with key bindings for specific paths
-files=$(fzf \
- --header "^a pwd ^b public ^d .dotfiles ^f configs ^g git ^h home ^k desktop ^r scripts ^s suckless ^u staged files ^v private ^/ help" \
- --preview "selection={};
- clean=\$(printf '%s' \"\$selection\" | sed -e 's/^📄 //' -e 's/^✏ //' -e 's/^✅ //' -e 's/^❌ //' -e 's/^🔀 //' -e 's/^❓ //');
- [ -z \"\$clean\" ] && { echo 'No selection'; exit 0; }
- target=\$(readlink -f \"\$clean\" 2>/dev/null || printf '%s' \"\$clean\");
- if [ -z \"\$target\" ]; then echo 'Could not resolve path'; exit 0; fi;
- mime=\$(file --mime-type -b \"\$target\" 2>/dev/null);
- case \"\$mime\" in
- image/*)
- echo \"[image preview disabled] \$target\";
- file -h \"\$target\";
- exit 0;;
- esac;
- if [ -f \"\$target\" ]; then
- dir=\$(dirname \"\$target\");
- if git_root=\$(git -C \"\$dir\" rev-parse --show-toplevel 2>/dev/null); then
- rel=\${target#\"\$git_root\"/};
- diff_output=\$(git -C \"\$git_root\" diff --color -- \"\$rel\");
- if [ -n \"\$diff_output\" ]; then printf '%s\n' \"\$diff_output\"; exit 0; fi;
- diff_output=\$(git -C \"\$git_root\" diff --color --cached -- \"\$rel\");
- if [ -n \"\$diff_output\" ]; then printf '%s\n' \"\$diff_output\"; exit 0; fi;
- fi;
- fi;
- if [ -d \"\$target\" ]; then
- eza --color=always --long --all --header --icons --git \"\$target\";
- elif [ -f \"\$target\" ]; then
- bat --color=always --style=header,grid --line-range=:500 \"\$target\";
- else
- file -h \"\$target\";
- fi" \
- --reverse \
- --query="$1" \
- --multi \
- --exit-0 \
- --prompt " 💡 " \
- --bind "ctrl-a:change-prompt( ⚡ )+reload(fd -H -L -t f -E .Trash -E .git -E .cache -E node_modules -E .next -E dist -E build -E coverage -E target -E vendor -E .venv -E venv . $PWD)" \
- --bind "ctrl-b:change-prompt( 🌎 )+reload(fd -H -L -t f -E .Trash -E .git -E .cache -E node_modules -E .next -E dist -E build -E coverage -E target -E vendor -E .venv -E venv . ${XDG_PUBLICSHARE_DIR:-${HOME}/Public})" \
- --bind "ctrl-d:change-prompt( ⚙️ )+reload(fd -H -L -t f -E .Trash -E .git -E .cache -E node_modules -E .next -E dist -E build -E coverage -E target -E vendor -E .venv -E venv . ${XDG_DOTFILES_DIR:-${HOME}/.dotfiles})" \
- --bind "ctrl-f:change-prompt( 🗂️ )+reload(fd -H -L -t f -E .Trash -E .git -E .cache -E node_modules -E .next -E dist -E build -E coverage -E target -E vendor -E .venv -E venv . ${XDG_CONFIG_HOME:-${HOME}/.config})" \
- --bind "ctrl-g:change-prompt( )+reload(fd -H -L -t f -E .Trash -E .git -E .cache . $HOME/Private/repos $HOME/Public/repos)" \
- --bind "ctrl-h:change-prompt( 🏠 )+reload(fd -H -L -t f -E .Trash -E .git -E .cache . $HOME)" \
- --bind "ctrl-k:change-prompt( 🖥️ )+reload(fd -H -L -t f -E .Trash -E .git -E .cache . ${XDG_DESKTOP_DIR:-${HOME}/Desktop})" \
- --bind "ctrl-r:change-prompt( 👟 )+reload(fd -H -L -t f -E .Trash -E .git -E .cache -E zsh . ${XDG_SCRIPTS_HOME:-${HOME}/.local/bin})" \
- --bind "ctrl-s:change-prompt( 🛠 )+reload(find ${XDG_SOURCES_HOME:-${HOME}/.local/src}/suckless -maxdepth 2 -type f -not -path '*/.git/*')" \
- --bind "ctrl-u:change-prompt( 📝 )+reload(if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then top=\$(git rev-parse --show-toplevel 2>/dev/null); git -C \"\$top\" status --porcelain | awk -v root=\"\$top\" '{
- staged=substr(\$0,1,1);
- unstaged=substr(\$0,2,1);
- file=substr(\$0,4);
- gsub(/^ +/, \"\", file);
- if (file == \"\") next;
- if (staged == \"?\" && unstaged == \"?\") icon=\"📄\";
- else if (staged == \"!\" && unstaged == \"!\") icon=\"❌\";
- else if (staged != \" \" && staged != \"?\" && unstaged != \" \" && unstaged != \"?\") icon=\"🔀\";
- else if (staged != \" \" && staged != \"?\") icon=\"✅\";
- else if (unstaged != \" \") icon=\"✏\";
- else icon=\"❓\";
- print icon \" \" root \"/\" file
- }'; else echo 'This is not a git repository.'; fi)" \
- --bind "ctrl-v:change-prompt( 🔒 )+reload(fd -H -L -t f -E .Trash -E .git -E .cache . $HOME/Private)" \
- --bind 'ctrl-/:change-prompt( ❓ )+reload(echo "^a all
-^b public
-^c configs
-^d .dotfiles
-^g git
-^k desktop
-^r scripts
-^s suckless
-^u staged files
-^v private
-^/ help")')
-
-# Check if any files were selected, and exit if not
-[ -z "$files" ] && exit 0
-
-files=$(printf '%s\n' "$files" | sed -e 's/^📄 //' -e 's/^✏ //' -e 's/^✅ //' -e 's/^❌ //' -e 's/^🔀 //' -e 's/^❓ //')
-
-if [ -d "$files" ]; then
- absolute_files=$(realpath $files)
- if echo "$absolute_files" | while read -r file; do file --mime-type "$file" | grep -q 'video/'; done; then
- mpv --quiet --loop $absolute_files
- else
- openfiles "$absolute_files"
- fi
-else
- openfiles "$files"
-fi