8 lines
206 B
Bash
8 lines
206 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
[[ ! -f ~/.bookmarks ]] && touch ~/.bookmarks
|
||
|
|
||
|
dupa=$(awk '{print $1}' ~/.bookmarks | wofi --lines 15 --show dmenu)
|
||
|
x=$(cat ~/.bookmarks | grep $dupa | awk '{print $2}')
|
||
|
echo "type $x" | dotool
|