14 lines
		
	
	
	
		
			195 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			195 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{writeShellApplication}:
 | 
						|
writeShellApplication
 | 
						|
{
 | 
						|
  name = "restart";
 | 
						|
 | 
						|
  runtimeInputs = [];
 | 
						|
 | 
						|
  text = ''
 | 
						|
    # Restart script for kde
 | 
						|
 | 
						|
    killall .plasmashell-wr
 | 
						|
    kstart plasmashell&
 | 
						|
  '';
 | 
						|
}
 |