Initial commit with half arsed flake

This commit is contained in:
Nox Sluijtman 2023-08-16 18:05:22 +02:00
commit 32be7882be
4 changed files with 154 additions and 0 deletions

6
open-bookmark Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
bookmarks="${BOOKMARKS:-"$HOME/.config/qutebrowser/bookmarks/urls"}"
menu="${MENU:-"rofi -dmenu"}"
choice="$(sort $bookmarks | $menu -i -p "Bookmarks")"
xdg-open "$(echo "$choice" | awk '{print$1}')"