reimplement config dotfiles with templates
This commit is contained in:
19
scripts/bookmarks.sh
Executable file
19
scripts/bookmarks.sh
Executable file
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
_BASENAME=$(basename "$0")
|
||||
_DIRNAME=$(dirname "$0")
|
||||
cd "$(dirname "$0")" || _exit 1
|
||||
|
||||
_URL=$(grep -Ev "^#" ./bookmarks | rofi -dmenu -i -p Bookmarks)
|
||||
|
||||
if [[ "$_URL" == "edit" ]]
|
||||
then
|
||||
urxvt -e nvim /usr/local/share/dotfiles/scripts/bookmarks
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
||||
if [[ -n $_URL ]]
|
||||
then
|
||||
firefox "$(awk '{print $1}' <<< "$_URL")"
|
||||
fi
|
||||
Reference in New Issue
Block a user