mirror of
				https://github.com/librephoenix/nixos-config
				synced 2025-11-04 01:44:00 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			202 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			202 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
if [[ -f "$1" ]]; then
 | 
						|
  TYPE=$(file -b --mime-type "$1")
 | 
						|
  xclip -selection clipboard -t "$TYPE" -i "$1"
 | 
						|
else
 | 
						|
  echo $1 | xclip -selection clipboard -t text/plain &> /dev/null
 | 
						|
  exit
 | 
						|
fi
 | 
						|
exit
 |