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
		
			
				
	
	
		
			10 lines
		
	
	
		
			262 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			262 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
NAUTILUSPYEXTDIR ?= /usr/share/nautilus-python/extensions
 | 
						|
QUBESLIBDIR ?= /usr/lib/qubes
 | 
						|
 | 
						|
.PHONY: install
 | 
						|
 | 
						|
install:
 | 
						|
	install -d $(DESTDIR)$(NAUTILUSPYEXTDIR)
 | 
						|
	install -t $(DESTDIR)$(NAUTILUSPYEXTDIR) -m 0644 *.py
 | 
						|
	install -t $(DESTDIR)$(QUBESLIBDIR) -m 0755 *.sh
 |