mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-29 03:21:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			623 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			623 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # Gives a dmenu prompt to search Startpage.
 | |
| # Without input, will open Startpage.com.
 | |
| # URLs will be directly handed to the browser.
 | |
| # Anything else, it search it.
 | |
| # original by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
 | |
| 
 | |
| 
 | |
| pgrep -x dmenu && exit
 | |
| 
 | |
| choice=$(echo "Startpage" | dmenu -i -p "Search Startpage:") || exit 1
 | |
| 
 | |
| if [ "$choice" = "Startpage"  ]; then
 | |
|     $BROWSER "https://startpage.com"
 | |
| else
 | |
|     if echo "$choice" | grep "^(http:\/\/|https:\/\/)?[a-zA-Z0-9]+\.[a-zA-Z]+(/)?.*$"; then
 | |
|         $BROWSER "$choice"
 | |
|     else
 | |
|         $BROWSER "https://startpage.com/do/search/?q=$choice"
 | |
|     fi
 | |
| fi
 |