Files
dotfiles_i3_notebook_arch/rofi/scripts/scholar-search.sh
2025-09-22 08:27:51 +02:00

13 lines
224 B
Bash
Executable File

#!/usr/bin/env bash
query=$( (echo ) | rofi -dmenu -i -lines 0 -matching fuzzy -location 0 -p " " )
if [[ -n "$query" ]]; then
url=https://scholar.google.com/scholar?q=$query
xdg-open "$url"
else
exit
fi
exit 0