summaryrefslogtreecommitdiff
path: root/.local/bin/fzf-shortcuts
blob: 5e0fb4a82e5fc3d1655b794956a8f53c1ade3821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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"