18 lines
		
	
	
		
			308 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			308 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
#
 | 
						|
# ## Available Styles
 | 
						|
#
 | 
						|
## dropdown-transparent dropdown-text
 | 
						|
## fullscreen-transparent small-transparent
 | 
						|
 | 
						|
dir="$HOME/.config/rofi/scripts/calc"
 | 
						|
# dir="." for testing
 | 
						|
theme='transparent-text'
 | 
						|
 | 
						|
## Run
 | 
						|
rofi \
 | 
						|
    -show calc \
 | 
						|
    -modi calc \
 | 
						|
    -terse \
 | 
						|
    -theme ${dir}/${theme}.rasi
 |