2 lines
130 B
Bash
Executable file
2 lines
130 B
Bash
Executable file
#!/bin/sh
|
|
cat ~/bookmarks* | sort | uniq | dmenu -i -l 30 -sb "#303030" -fn terminus | awk -F ' | ' '{print $1}' | xargs -r plumb
|