mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
7 lines
216 B
Bash
7 lines
216 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
selection=$( cat ~/scripts/bookmarks | sed -r 's/^([^ ]*) .*$/\1/' | rofi -p open -dmenu -no-custom )
|
||
|
[ -z "$selection" ] && exit 1
|
||
|
|
||
|
cat ~/scripts/bookmarks | sed -n -r "s/^$selection (.*)$/\1/p" | bash
|