summaryrefslogtreecommitdiff
path: root/.local/bin/fzf-shortcuts
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2025-03-30 01:00:51 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2025-03-30 01:00:51 -0400
commitf4c4550e327d9090c82a735d39d104d0bedb602d (patch)
treefcfa762512155c132a66d3adbb56067ca2d5d61b /.local/bin/fzf-shortcuts
parent43dbb32d741e11f8e06341f515944ec757d4578f (diff)
Loads of laptop shit
Diffstat (limited to '.local/bin/fzf-shortcuts')
-rwxr-xr-x.local/bin/fzf-shortcuts23
1 files changed, 23 insertions, 0 deletions
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"