mirror of
				https://gitea.blesmrt.net/mikaela/scripts.git
				synced 2025-10-31 09:27:21 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			435 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			435 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| set -x
 | |
| if [ -f /snap/bin/superproductivity ]; then
 | |
| 	# https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1951491/comments/105
 | |
| 	export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus
 | |
| 	snap run superproductivity --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations "$@"
 | |
| else
 | |
| 	/usr/bin/superproductivity --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations "$@"
 | |
| fi
 | |
| set +x
 |