16 lines
		
	
	
		
			481 B
		
	
	
	
		
			Bash
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			481 B
		
	
	
	
		
			Bash
		
	
	
# vim: set ft=bash :
 | 
						|
 | 
						|
reboot-to-windows ()
 | 
						|
{
 | 
						|
  # Check if grub is installed by checking if the command exists, if it does
 | 
						|
  # not, then assume that the system is using systemd-boot
 | 
						|
  if grub-install --version &>/dev/null; then
 | 
						|
    windows_title=$(grep -i windows /boot/grub/grub.cfg | cut -d "'" -f 2)
 | 
						|
    sudo grub-reboot "$windows_title"
 | 
						|
    echo "Grub set to reboot to Windows"
 | 
						|
  else
 | 
						|
    sudo bootctl set-oneshot windows.conf
 | 
						|
    echo "Systemd set to reboot to Windows"
 | 
						|
  fi
 | 
						|
}
 |