firefox -> chromium and initial bspwm config (thanks fbt)
This commit is contained in:
parent
fcd1e75e6d
commit
eaff767e63
12 changed files with 444 additions and 1 deletions
15
bspwm/bspmenu_url
Executable file
15
bspwm/bspmenu_url
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
get_bookmarks() {
|
||||
while read url title; do
|
||||
echo "$url"
|
||||
done < "$HOME/.config/bookmarks"
|
||||
}
|
||||
|
||||
main() {
|
||||
uri=$(get_bookmarks | /home/von/.config/bspwm/bspmenu -p 'url' "$@")
|
||||
[ "$uri" ] && { sx-open "$uri"; }
|
||||
echo "$uri"
|
||||
}
|
||||
|
||||
main "$@"
|
Loading…
Add table
Add a link
Reference in a new issue