mirror of
				https://github.com/kastdeur/dotfiles.git
				synced 2025-10-31 03:06:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			290 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Terminate already running bar instances
 | 
						|
killall -q polybar
 | 
						|
# If all your bars have ipc enabled, you can also use 
 | 
						|
# polybar-msg cmd quit
 | 
						|
 | 
						|
# Launch bar1 and bar2
 | 
						|
echo "---" | tee -a /tmp/polybar1.log
 | 
						|
polybar primary >>/tmp/polybar1.log 2>&1 &
 | 
						|
 | 
						|
echo "Bars launched..."
 |