10 lines
263 B
Bash
Executable File
10 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
BOOKMARKS="$HOME/.local/share/bookmarks/bookmarks"
|
|
LAUNCHER="$HOME/.config/rofi/launchers.d/rofi_launcher_bookmark_insert.sh"
|
|
|
|
sel="$(grep -v '^#' "$BOOKMARKS" | "$LAUNCHER" | cut -d ' ' -f1)"
|
|
|
|
[ -n "$sel" ] && wtype "$sel"
|