mirror of
				https://github.com/AquaMorph/dotfiles.git
				synced 2025-10-31 15:43:19 +00:00 
			
		
		
		
	Toggle run level
This commit is contained in:
		
							
								
								
									
										17
									
								
								scripts/toggle-graphics.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								scripts/toggle-graphics.sh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | |||||||
|  | #! /bin/bash | ||||||
|  |  | ||||||
|  | # Script to toggle graphical | ||||||
|  |  | ||||||
|  | defTarget=$(systemctl get-default) | ||||||
|  |  | ||||||
|  | if [[ $defTarget == 'graphical.target' ]] | ||||||
|  | then | ||||||
|  |     echo 'Changing default target to nongraphical shell' | ||||||
|  |     sudo systemctl set-default multi-user.target | ||||||
|  | else | ||||||
|  |     echo 'Changing default target to graphical shell' | ||||||
|  |     sudo systemctl set-default graphical.target | ||||||
|  | fi | ||||||
|  | echo | ||||||
|  | echo 'Default target changed to '$(systemctl get-default) | ||||||
|  | echo 'Please reboot for the change to take effect' | ||||||
		Reference in New Issue
	
	Block a user