16 lines
		
	
	
		
			839 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			839 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| export WMENU_VOPTS="\
 | |
| -i \
 | |
| -f '{{ .theme.font.name_mono }} {{ math.Add .theme.font.size_base_pt .theme.font.size_step_pt }}' \
 | |
| -n {{ .theme.color.fg }} -N {{ .theme.color.bg }}{{ math.Mul .theme.opacity.high 255 | conv.ToInt64 | printf "%02X" }} \
 | |
| -m {{ .theme.color.bg_accent_dark }} -M {{ .theme.color.fg_accent }} \
 | |
| -s {{ .theme.color.fg_accent }} -S {{ .theme.color.bg }}{{ math.Mul .theme.opacity.high 255 | conv.ToInt64 | printf "%02X" }} \
 | |
| "
 | |
| export WMENU_HOPTS="\
 | |
| -i \
 | |
| -f '{{ .theme.font.name_mono }} {{ math.Add .theme.font.size_base_pt .theme.font.size_step_pt }}' \
 | |
| -n {{ .theme.color.fg }} -N {{ .theme.color.bg }} \
 | |
| -m {{ .theme.color.bg_accent_dark }} -M {{ .theme.color.fg_accent }} \
 | |
| -s {{ .theme.color.fg_accent }} -S {{ .theme.color.bg }}{{ math.Mul .theme.opacity.high 255 | conv.ToInt64 | printf "%02X" }} \
 | |
| "
 |