mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
14 lines
537 B
Bash
Executable file
14 lines
537 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
|
|
groups="$(ls "$HOME/scripts/bookmarks")\nauswahl"
|
|
group_selection=$(echo -e "$groups" | rofi -i -matching fuzzy -p open -dmenu -no-custom)
|
|
if [ "$group_selection" = "auswahl" ]; then
|
|
auswahl "$(auswahl --list | rofi -dmenu -i -no-custom)"
|
|
else
|
|
selection=$( cat "$HOME/scripts/bookmarks/$group_selection" | sed -r 's/^([^ ]*) .*$/\1/' | rofi -p open -matching fuzzy -dmenu -i -no-custom)
|
|
[ -z "$selection" ] && exit 1
|
|
|
|
cat "$HOME/scripts/bookmarks/$group_selection" | sed -n -r "s/^$selection (.*)$/\1/p" | bash
|
|
fi
|