From f4c4550e327d9090c82a735d39d104d0bedb602d Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Sun, 30 Mar 2025 01:00:51 -0400 Subject: Loads of laptop shit --- .local/bin/fzf-shortcuts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 .local/bin/fzf-shortcuts (limited to '.local/bin/fzf-shortcuts') diff --git a/.local/bin/fzf-shortcuts b/.local/bin/fzf-shortcuts new file mode 100755 index 0000000..5e0fb4a --- /dev/null +++ b/.local/bin/fzf-shortcuts @@ -0,0 +1,23 @@ +#!/bin/sh + +# Example shortcutfile contents: +# Compilation : /home/master/.local/src +# Config : /home/master/.config +# CV : /home/master/Dropbox/A/work/Application/CV/current +# Downloads : /home/master/Downloads +# Dropbox : /home/master/Dropbox +# Hotkeys : /home/master/.config/sxhkd + +shortcutfile="${XDG_CACHE_HOME:-$HOME/.cache}/plain-shortcuts" + +# Read the file and pass it to fzf +selected=$(cat "$shortcutfile" | fzf) + +# Extract the path part (after the colon) +selected_path=$(echo "$selected" | cut -d ':' -f 2-) + +# Trim leading and trailing whitespace +selected_path=$(echo "$selected_path" | sed 's/^ *//;s/ *$//') + +# Print the selected path +echo "$selected_path" -- cgit v1.2.3