A small script will add the QubesIncoming shortcut to Nautilus file pane on the first use of qvm-copy to a given VM. The shortcut will not be recreated if deleted. fixes QubesOS/qubes-issues#2229
		
			
				
	
	
		
			7 lines
		
	
	
		
			172 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			172 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
if [ -f /usr/lib/qubes/qvm_nautilus_bookmark.sh ]
 | 
						|
then
 | 
						|
  /usr/lib/qubes/qvm_nautilus_bookmark.sh >/dev/null 2>&1 </dev/null
 | 
						|
fi
 | 
						|
exec /usr/lib/qubes/qfile-unpacker
 |