diff options
Diffstat (limited to '.scripts')
| -rwxr-xr-x | .scripts/dmenuarchwiki | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.scripts/dmenuarchwiki b/.scripts/dmenuarchwiki new file mode 100755 index 0000000..276b5eb --- /dev/null +++ b/.scripts/dmenuarchwiki @@ -0,0 +1,17 @@ +#!/bin/sh + +# Gives a dmenu prompt to search the Arch Wiki in your preferred web browser +# Home goes to the home page of the Arch Wiki +# Anything else, it search it + +# Original idea/script by Github user @Caedis. Minor changes by Luke. + +pgrep -x dmenu && exit + +choice=$(echo "📖" | dmenu -i -p "Type ArchWiki page or search term:") || exit 1 + +if [ "$choice" = "📖" ]; then + $BROWSER "https://wiki.archlinux.org" +else + $BROWSER "https://wiki.archlinux.org/index.php?search=$choice" +fi |
