Files
opalfiles/.local/bin/bookmark_insert_into_field.sh
2025-08-16 11:35:38 -07:00

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"