25 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
export BEMENU_OPTS="\
 | 
						|
--ignorecase \
 | 
						|
--width-factor 0.5 \
 | 
						|
--fn \"{{ .theme.font.name_mono }} {{ math.Add .theme.font.size_base_pt .theme.font.size_step_pt }}\" \
 | 
						|
--list 500 \
 | 
						|
--border 2 \
 | 
						|
--scrollbar autohide \
 | 
						|
--border-radius 4 \
 | 
						|
--bdr #{{ .theme.color.fg_accent }}{{ math.Mul .theme.opacity.med 255 | conv.ToInt64 | printf "%02X" }} \
 | 
						|
--scf #{{ .theme.color.fg_accent }}{{ math.Mul .theme.opacity.med 255 | conv.ToInt64 | printf "%02X" }} \
 | 
						|
--scb #{{ .theme.color.bg }}{{ math.Mul .theme.opacity.high 255 | conv.ToInt64 | printf "%02X" }} \
 | 
						|
--nb #{{ .theme.color.bg }}{{ math.Mul .theme.opacity.high 255 | conv.ToInt64 | printf "%02X" }} \
 | 
						|
--ab #{{ .theme.color.bg }}{{ math.Mul .theme.opacity.high 255 | conv.ToInt64 | printf "%02X" }} \
 | 
						|
--hb #{{ .theme.color.bg }}{{ math.Mul .theme.opacity.high 255 | conv.ToInt64 | printf "%02X" }} \
 | 
						|
--fb #{{ .theme.color.bg }}{{ math.Mul .theme.opacity.high 255 | conv.ToInt64 | printf "%02X" }} \
 | 
						|
--tb #{{ .theme.color.bg }}{{ math.Mul .theme.opacity.high 255 | conv.ToInt64 | printf "%02X" }} \
 | 
						|
--nf #{{ .theme.color.fg }} \
 | 
						|
--af #{{ .theme.color.fg }} \
 | 
						|
--cf #{{ .theme.color.fg }} \
 | 
						|
--hf #{{ .theme.color.fg_accent }} \
 | 
						|
--tf #{{ .theme.color.fg_accent }} \
 | 
						|
--ff #{{ .theme.color.fg_accent }} \
 | 
						|
"
 |