mirror of
				https://github.com/linuxserver/docker-webtop.git
				synced 2025-10-31 19:34:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			474 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			474 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # Enable Nvidia GPU support if detected
 | |
| if which nvidia-smi; then
 | |
|   export LIBGL_KOPPER_DRI2=1
 | |
|   export MESA_LOADER_DRIVER_OVERRIDE=zink
 | |
|   export GALLIUM_DRIVER=zink
 | |
| fi
 | |
| 
 | |
| # Default settings
 | |
| if [ ! -d "${HOME}"/.config/xfce4/xfconf/xfce-perchannel-xml ]; then
 | |
|   mkdir -p "${HOME}"/.config/xfce4/xfconf/xfce-perchannel-xml
 | |
|   cp /defaults/xfce/* "${HOME}"/.config/xfce4/xfconf/xfce-perchannel-xml/
 | |
| fi
 | |
| 
 | |
| # Start DE
 | |
| dbus-launch /usr/bin/xfce4-session > /dev/null 2>&1
 |